removed a semicolon in the USE() macro

This commit is contained in:
Brian Paul 2001-08-20 21:45:15 +00:00
parent 9babb73789
commit c123a9b2ed
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: s_lines.c,v 1.20 2001/08/20 16:41:47 brianp Exp $ */
/* $Id: s_lines.c,v 1.21 2001/08/20 21:45:15 brianp Exp $ */
/*
* Mesa 3-D graphics library
@ -1015,7 +1015,7 @@ do { \
#else
#define USE(lineFunc) swrast->Line = lineFunc;
#define USE(lineFunc) swrast->Line = lineFunc
#endif