diff options
| author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-08-22 17:23:22 +0000 | 
|---|---|---|
| committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-08-22 17:23:22 +0000 | 
| commit | bc3a5336d941239cdfd5d9cfd6b407e769c2ac70 (patch) | |
| tree | 2802b3e50f5de1961d57a7b7667b75c68961061f | |
| parent | 370b47802ecd54a7830dbb6c22d78e9838170dfa (diff) | |
don't use __FUNCTION__ - not portable
| -rw-r--r-- | src/mesa/tnl/t_vertex_c.c | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/src/mesa/tnl/t_vertex_c.c b/src/mesa/tnl/t_vertex_c.c index 0c3fd00401..5109026037 100644 --- a/src/mesa/tnl/t_vertex_c.c +++ b/src/mesa/tnl/t_vertex_c.c @@ -228,17 +228,12 @@ static GLboolean print_attr_header( struct tnl_clipspace_codegen *p,  static GLboolean print_attr_footer( struct tnl_clipspace_codegen *p )  { -   return  -      emit(p, "      }\n"); +   return emit(p, "      }\n");  }  static tnl_emit_func print_store_func( struct tnl_clipspace_codegen *p )   { -#if defined( WIN32 ) || defined( __VMS ) -   fprintf(stderr, "%s: emitted:\n%s\n", "print_store_func", p->buf); -#else -   fprintf(stderr, "%s: emitted:\n%s\n", __FUNCTION__, p->buf); -#endif    +   fprintf(stderr, "print_store_func: emitted:\n%s\n", p->buf);     return 0;  } | 
