void-packages/srcpkgs/gltron/patches/gltron-0.70-prototypes.patch

25 lines
625 B
Diff
Raw Normal View History

2020-02-05 13:32:24 +00:00
scripting.h declares these params as const so make sure they're the same.
--- nebu/scripting/scripting.c
+++ nebu/scripting/scripting.c
@@ -169,16 +169,16 @@
return status;
}
-void scripting_RunFile(char *name) {
+void scripting_RunFile(const char *name) {
lua_dofile(L, name);
}
-void scripting_Run(char *command) {
+void scripting_Run(const char *command) {
/* fprintf(stderr, "[command] %s\n", command); */
lua_dostring(L, command);
}
-void scripting_RunFormat(char *format, ... ) {
+void scripting_RunFormat(const char *format, ... ) {
char buf[4096];
va_list ap;
va_start(ap, format);