From 87855f8124b47fa530457b8b32f4f0a173be28b4 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 14 Mar 2023 12:52:35 -0400 Subject: [PATCH] Avoid a compiler warning. --- saveresume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.31.1