summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-16 10:39:17 -0700
committerBrian Paul <brianp@vmware.com>2009-12-16 10:39:26 -0700
commit8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b (patch)
tree54eb5a8a3313f2548dfb64c8c755045c00c026ae
parent35ff190a9c80988ffeb0fbe4e2b5d732f8130feb (diff)
mesa: add missing semicolon
See bug 25663.
-rw-r--r--src/mesa/main/dlopen.c2
1 files changed, 1 insertions, 1 deletions
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];