diff options
author | Brian Paul <brianp@vmware.com> | 2009-12-16 10:39:17 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-12-16 10:39:26 -0700 |
commit | 8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b (patch) | |
tree | 54eb5a8a3313f2548dfb64c8c755045c00c026ae | |
parent | 35ff190a9c80988ffeb0fbe4e2b5d732f8130feb (diff) | |
download | mesa-8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b.tar.gz |
mesa: add missing semicolon
See bug 25663.
-rw-r--r-- | src/mesa/main/dlopen.c | 2 |
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]; |