Address GitLab issue #66: Missing couple of ; in saveresume.c
authorEric S. Raymond <esr@thyrsus.com>
Thu, 16 Mar 2023 11:43:17 +0000 (07:43 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Thu, 16 Mar 2023 11:43:17 +0000 (07:43 -0400)
saveresume.c

index b90595b5b13253e8ba0f4c9eef3cccdb8562a58d..575b11f2486a319ec2090b284ad8ed2a7d05a7ff 100644 (file)
@@ -83,7 +83,7 @@ int suspend(void)
      *  If ADVENT_NOSAVE is defined, gripe instead. */
 
 #if defined ADVENT_NOSAVE || defined ADVENT_AUTOSAVE
-    rspeak(SAVERESUME_DISABLED)
+    rspeak(SAVERESUME_DISABLED);
     return GO_TOP;
 #endif
     FILE *fp = NULL;
@@ -118,7 +118,7 @@ int resume(void)
      *  If ADVENT_NOSAVE is defined, gripe instead. */
 
 #if defined ADVENT_NOSAVE || defined ADVENT_AUTOSAVE
-    rspeak(SAVERESUME_DISABLED)
+    rspeak(SAVERESUME_DISABLED);
     return GO_TOP;
 #endif
     FILE *fp = NULL;