diff options
author | Marius Predut <[email protected]> | 2015-04-03 16:11:57 +0300 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-04-14 12:23:41 -0700 |
commit | f0e693efb393f1135702c80a64f8733adc922db1 (patch) | |
tree | 8c266fb784c46ef00bb09c3617015e5dfaa4aed4 /src/mesa/tnl_dd/t_dd_unfilled.h | |
parent | 3ca17e75e4fe129511a4dcad47e139485beef880 (diff) |
tnl: replace __FUNCTION__ with __func__
Consistently just use C99's __func__ everywhere.
The patch was verified with Microsoft Visual studio 2013
redistributable package(RTM version number: 18.0.21005.1)
Next MSVC versions intends to support __func__.
No functional changes.
Acked-by: Matt Turner <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Signed-off-by: Marius Predut <[email protected]>
Diffstat (limited to 'src/mesa/tnl_dd/t_dd_unfilled.h')
-rw-r--r-- | src/mesa/tnl_dd/t_dd_unfilled.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/tnl_dd/t_dd_unfilled.h b/src/mesa/tnl_dd/t_dd_unfilled.h index 6be0e7fcef5..82190c08916 100644 --- a/src/mesa/tnl_dd/t_dd_unfilled.h +++ b/src/mesa/tnl_dd/t_dd_unfilled.h @@ -59,7 +59,7 @@ static void TAG(unfilled_tri)( struct gl_context *ctx, } } -/* fprintf(stderr, "%s %s %d %d %d\n", __FUNCTION__, */ +/* fprintf(stderr, "%s %s %d %d %d\n", __func__, */ /* _mesa_lookup_enum_by_nr( mode ), */ /* ef[e0], ef[e1], ef[e2]); */ |