From 50169781566c00f035020557d96255a7ac5a0904 Mon Sep 17 00:00:00 2001 From: Nicola Smaniotto Date: Mon, 27 Nov 2023 17:41:26 +0100 Subject: [PATCH] saveresume.c: add missing semicolon Fixes compilation when ADVENT_NOSAVE is set --- saveresume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/saveresume.c b/saveresume.c index 70b9461..a2c10a0 100644 --- a/saveresume.c +++ b/saveresume.c @@ -137,7 +137,7 @@ int restore(FILE* fp) * sane initial state. * If ADVENT_NOSAVE is defined, gripe instead. */ #ifdef ADVENT_NOSAVE - rspeak(SAVERESUME_DISABLED) + rspeak(SAVERESUME_DISABLED); return GO_TOP; #endif -- 2.31.1