From: Brian Paul Date: Wed, 16 Dec 2009 17:39:17 +0000 (-0700) Subject: mesa: add missing semicolon X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b;p=mesa.git mesa: add missing semicolon See bug 25663. --- diff --git a/src/mesa/main/dlopen.c b/src/mesa/main/dlopen.c index 325de4b083d..81e032081db 100644 --- a/src/mesa/main/dlopen.c +++ b/src/mesa/main/dlopen.c @@ -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];