From 60aebe82112277176ba437bf7310aecca2b74bbf Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Sat, 27 Dec 2025 15:56:22 +0100 Subject: Make function static --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 3ec14cb..693bb1c 100644 --- a/src/main.c +++ b/src/main.c @@ -72,7 +72,7 @@ static void assert_db_exists(void) /* Prompt the user for yes or no (default is yes). Before calling, a prompt * should be printed to stdout, eventually not with an ending newline. */ -int prompt_yes_no(void) +static int prompt_yes_no(void) { printf(" [Y/n]\n"); fflush(stdout); -- cgit v1.2.3