Eliminate warning about old-style function declaration.
authorChris Hanson <org/chris-hanson/cph>
Tue, 16 Oct 2018 04:07:20 +0000 (21:07 -0700)
committerChris Hanson <org/chris-hanson/cph>
Tue, 16 Oct 2018 04:07:20 +0000 (21:07 -0700)
src/microcode/svm1-interp.c

index 08b77082e43f17eac9a733ea449759f55ac08522..9ee92f5eaea0f94a5c673a371dc364b1f3141a6a 100644 (file)
@@ -704,7 +704,7 @@ push_entry (uint8_t * PC)
 }
 
 static inline SCHEME_OBJECT
-pop_object ()
+pop_object (void)
 {
   SCHEME_OBJECT * sp = ((SCHEME_OBJECT *) (WREG_REF (SVM1_REG_STACK_POINTER)));
   SCHEME_OBJECT object = (STACK_LOCATIVE_POP (sp));