projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c938af
)
VirtGL: Fix warning in server_stub.c
author
Frédéric Dalleau
<frederic.dalleau@linux.intel.com>
Wed, 4 Sep 2013 09:09:43 +0000
(11:09 +0200)
committer
jinhyung.jo
<jinhyung.jo@samsung.com>
Wed, 11 Sep 2013 09:15:38 +0000
(18:15 +0900)
server_stub.c:7812:7: warning: function declaration
isn’t a prototype [-Wstrict-prototypes]
Change-Id: I90f3a97be0ed401544239c64f9ab74cba27395b1
tizen/src/hw/parse_gl_h.c
patch
|
blob
|
history
diff --git
a/tizen/src/hw/parse_gl_h.c
b/tizen/src/hw/parse_gl_h.c
index be7109ba45fd776e4397c17fa2e9dc33e6cdc3fb..277a8177ec1635b4578622825879946415d2d5bf 100644
(file)
--- a/
tizen/src/hw/parse_gl_h.c
+++ b/
tizen/src/hw/parse_gl_h.c
@@
-1130,6
+1130,8
@@
static void fprintf_prototype_args(FILE* f, FuncDesc* funcDesc)
else
fprintf(f, "%s arg_%d", funcDesc->args[j], j);
}
+ if (j == 0)
+ fprintf(f, "void");
}
int main(int argc, char* argv[])