Mesa (mesa_7_6_branch): mesa: add missing semicolon

Brian Paul brianp at kemper.freedesktop.org
Wed Dec 16 17:39:36 UTC 2009


Module: Mesa
Branch: mesa_7_6_branch
Commit: 8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8a09e6e2ad9676c69cc4bb33459ebd4cbc9c982b

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Dec 16 10:39:17 2009 -0700

mesa: add missing semicolon

See bug 25663.

---

 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 325de4b..81e0320 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];




More information about the mesa-commit mailing list