diff options
author | Vladimír Čunát <vladimir.cunat@nic.cz> | 2023-06-07 10:54:30 +0200 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2023-06-08 08:13:06 +0200 |
commit | 3b37fc20f2bd5edb2520a3f42ecef0c519e027b8 (patch) | |
tree | 7bf9f62bf0aef012f7894f31ae7daba78c6d296b /utils | |
parent | treewide: fix -Wstrict-prototypes (diff) | |
download | knot-resolver-3b37fc20f2bd5edb2520a3f42ecef0c519e027b8.tar.xz knot-resolver-3b37fc20f2bd5edb2520a3f42ecef0c519e027b8.zip |
treewide: fix -Wold-style-*
Diffstat (limited to 'utils')
-rw-r--r-- | utils/cache_gc/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/cache_gc/main.c b/utils/cache_gc/main.c index db4f0bd8..5adf19f0 100644 --- a/utils/cache_gc/main.c +++ b/utils/cache_gc/main.c @@ -12,7 +12,7 @@ #include "kresconfig.h" #include "kr_cache_gc.h" -volatile static int killed = 0; +static volatile int killed = 0; static void got_killed(int signum) { |