saveresume.c: add missing semicolon

Fixes compilation when ADVENT_NOSAVE is set
This commit is contained in:
Nicola Smaniotto 2023-11-27 17:41:26 +01:00
parent 7d4dd78679
commit 5016978156
No known key found for this signature in database
GPG key ID: C44BA4D73A21E89F

View file

@ -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