Spelling fixes
[open-adventure.git] / saveresume.c
index afd04d37af00570a385e85b545bdad1fcced9352..dedb5bbe288a03b6581ad18895ea4183984f83ba 100644 (file)
@@ -57,7 +57,7 @@ int savefile(FILE *fp, int32_t version)
 
 /* Suspend and resume */
 
-char *strip(char *name)
+static char *strip(char *name)
 {
     // Trim leading whitespace
     while(isspace((unsigned char)*name))
@@ -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;
@@ -161,8 +161,8 @@ int restore(FILE* fp)
     if (save.version != VRSION) {
         rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10));
     } else if (!is_valid(save.game)) {
-       rspeak(SAVE_TAMPERING); // LCOV_EXCL_LINE
-       exit(EXIT_SUCCESS);     // LCOV_EXCL_LINE
+       rspeak(SAVE_TAMPERING);
+       exit(EXIT_SUCCESS);
     } else {
         game = save.game;
     }
@@ -172,7 +172,7 @@ int restore(FILE* fp)
 bool is_valid(struct game_t valgame)
 {
     /*  Save files can be roughly grouped into three groups:
-     *  With valid, reacheable state, with valid, but unreachable
+     *  With valid, reachable state, with valid, but unreachable
      *  state and with invalid state. We check that state is
      *  valid: no states are outside minimal or maximal value
      */