mesa: add missing semicolon

See bug 25663.
This commit is contained in:
Brian Paul 2009-12-16 10:39:17 -07:00
parent 35ff190a9c
commit 8a09e6e2ad

View file

@ -68,7 +68,7 @@ GenericFunc
_mesa_dlsym(void *handle, const char *fname)
{
#if defined(__blrts)
return (GenericFunc) NULL
return (GenericFunc) NULL;
#elif defined(__DJGPP__)
/* need '_' prefix on symbol names */
char fname2[1000];