summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_tritemp.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-03-29 23:42:44 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-03-29 23:42:44 +0000
commit920023240c2fc42675f318732b43bdc6f339113c (patch)
tree280d597a601fce8fba9a2a80591ae1695dea2b7e /src/mesa/swrast/s_tritemp.h
parent62c325af3f3238ab46c1d68570ee5a3872a74603 (diff)
put braces around RENDER_SPAN macro when called, not when defined. Fixes -pedantic warnings in x11 driver
Diffstat (limited to 'src/mesa/swrast/s_tritemp.h')
-rw-r--r--src/mesa/swrast/s_tritemp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h
index d4c9fdd7cb..7f581561ec 100644
--- a/src/mesa/swrast/s_tritemp.h
+++ b/src/mesa/swrast/s_tritemp.h
@@ -2,7 +2,7 @@
* Mesa 3-D graphics library
* Version: 6.5
*
- * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -1159,7 +1159,9 @@ static void NAME(GLcontext *ctx, const SWvertex *v0,
#ifdef INTERP_INDEX
CLAMP_INTERPOLANT(index, indexStep, len);
#endif
- RENDER_SPAN( span );
+ {
+ RENDER_SPAN( span );
+ }
}
/*