From: Eric S. Raymond Date: Tue, 14 Mar 2023 16:52:35 +0000 (-0400) Subject: Avoid a compiler warning. X-Git-Tag: 1.15~51 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=87855f8124b47fa530457b8b32f4f0a173be28b4 Avoid a compiler warning. --- diff --git a/saveresume.c b/saveresume.c index c53ee49..b90595b 100644 --- a/saveresume.c +++ b/saveresume.c @@ -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))