LLVMで発生した警告をもとにソースを修正
authorj8takagi <j8takagi@nifty.com>
Sat, 31 May 2014 14:08:59 +0000 (23:08 +0900)
committerj8takagi <j8takagi@nifty.com>
Sat, 31 May 2014 14:08:59 +0000 (23:08 +0900)
src/struct.c

index 7102280..b01ffb8 100644 (file)
@@ -198,7 +198,7 @@ bool create_code_type()
 const void (*getcmdptr(WORD code))
 {
     CMDTAB *t;
-    const void (*ptr);
+    const void *ptr = NULL;
 
     for(t = code_type[hash_code(code)]; t != NULL; t = t->next) {
         if(code == t->cmd->code) {