aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-08-06 01:20:01 +0100
committerMike Gilbert <floppym@gentoo.org>2023-08-08 11:29:35 -0400
commit3bdb6de54f80f7ddd9fa52f9181b3ab9dde87790 (patch)
treeeb7441250f4c09c7706b3b50ccc99cc72dd00e0c
parentegetcwd: fix some edge cases (diff)
downloadsandbox-3bdb6de54f80f7ddd9fa52f9181b3ab9dde87790.tar.gz
sandbox-3bdb6de54f80f7ddd9fa52f9181b3ab9dde87790.tar.bz2
sandbox-3bdb6de54f80f7ddd9fa52f9181b3ab9dde87790.zip
libsbutil: fix -Wold-style-declaration
Signed-off-by: Sam James <sam@gentoo.org> Signed-off-by: Mike Gilbert <floppym@gentoo.org>
-rw-r--r--libsbutil/src/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsbutil/src/debug.c b/libsbutil/src/debug.c
index 42652a3..b901fe8 100644
--- a/libsbutil/src/debug.c
+++ b/libsbutil/src/debug.c
@@ -11,7 +11,7 @@
#include "headers.h"
#include "rcscripts/rcutil.h"
-volatile static int debug_errno = 0;
+static volatile int debug_errno = 0;
#define log_domain "sandbox"