projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35ff190
)
mesa: add missing semicolon
author
Brian Paul
<brianp@vmware.com>
Wed, 16 Dec 2009 17:39:17 +0000
(10:39 -0700)
committer
Brian Paul
<brianp@vmware.com>
Wed, 16 Dec 2009 17:39:26 +0000
(10:39 -0700)
See bug 25663.
src/mesa/main/dlopen.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/dlopen.c
b/src/mesa/main/dlopen.c
index 325de4b083d45452208f7a9f58545501e632cd3d..81e032081db451e69167d33f580ccf63e5f8f0e3 100644
(file)
--- 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];