From f07b3ba2d4af0b4178a43cf81c5ed0b3e074e53f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 16 Mar 2023 07:43:17 -0400 Subject: [PATCH] Address GitLab issue #66: Missing couple of ; in saveresume.c --- saveresume.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.31.1