From 2926a95e712dd54c7a97e41c4de3b863b05c0698 Mon Sep 17 00:00:00 2001 From: Kugel Fuhr <98353208+kugelfuhr@users.noreply.github.com> Date: Tue, 8 Jul 2025 10:03:56 +0200 Subject: [PATCH] Use correct type for function used in atexit(). --- src/common/consprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/consprop.c b/src/common/consprop.c index f916ef4a7..cb1983953 100644 --- a/src/common/consprop.c +++ b/src/common/consprop.c @@ -105,7 +105,7 @@ const char CP_BoxDrawingSeq[BD_COUNT][2][4] = { #ifdef _WIN32 -static void Cleanup() +static void Cleanup (void) /* Cleanup on program exit */ { SetConsoleOutputCP (CodePage);