From a403b3bd1c13f8173c8e6b388e0e6fb71a348aa1 Mon Sep 17 00:00:00 2001 From: akallabeth Date: Tue, 7 May 2024 23:29:25 +0200 Subject: [PATCH] [server,proxy] add missing WINPR_NORETURN --- server/proxy/cli/freerdp_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/proxy/cli/freerdp_proxy.c b/server/proxy/cli/freerdp_proxy.c index bc53ae29a..ff0b3d5c6 100644 --- a/server/proxy/cli/freerdp_proxy.c +++ b/server/proxy/cli/freerdp_proxy.c @@ -81,7 +81,7 @@ static WINPR_NORETURN(void usage(const char* app)) exit(0); } -static void version(const char* app) +static WINPR_NORETURN(void version(const char* app)) { printf("%s version %s", app, freerdp_get_version_string()); exit(0);