From: Eric S. Raymond Date: Thu, 16 Mar 2023 11:43:17 +0000 (-0400) Subject: Address GitLab issue #66: Missing couple of ; in saveresume.c X-Git-Tag: 1.15~50 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=f07b3ba2d4af0b4178a43cf81c5ed0b3e074e53f Address GitLab issue #66: Missing couple of ; in saveresume.c --- diff --git a/saveresume.c b/saveresume.c index b90595b..575b11f 100644 --- a/saveresume.c +++ b/saveresume.c @@ -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;