commit | 61f613ba016b69a5c7716f4bea57c065793f3956 | [log] [tgz] |
---|---|---|
author | Maciej Żenczykowski <maze@google.com> | Wed Dec 18 14:42:38 2024 -0800 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Dec 18 14:42:38 2024 -0800 |
tree | 32a5e8754aaeb4d8f876eee6d62f9073bb13e54b | |
parent | 83463d76c38c3f1f67b03395a12809d0c85aa7f7 [diff] | |
parent | bd12ffbebe64f39330a30ee1a46d9407bb51dc77 [diff] |
Merge "Fix a function pointer type mismatch for C23." into main
diff --git a/clatd/main.c b/clatd/main.c index f888041..7aa1671 100644 --- a/clatd/main.c +++ b/clatd/main.c
@@ -37,7 +37,7 @@ /* function: stop_loop * signal handler: stop the event loop */ -static void stop_loop() { running = 0; }; +static void stop_loop(__attribute__((unused)) int unused) { running = 0; }; /* function: print_help * in case the user is running this on the command line