aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2023-12-23 07:28:19 -0500
committerLibravatar netblue30 <netblue30@protonmail.com>2023-12-23 07:28:19 -0500
commita5e72caa0a2b3ebb02f531459c73c221a12ab591 (patch)
tree4bbdf805957e44a74a08047361efa386dfbda3f1 /src
parentfix /usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games macro init (diff)
downloadfirejail-a5e72caa0a2b3ebb02f531459c73c221a12ab591.tar.gz
firejail-a5e72caa0a2b3ebb02f531459c73c221a12ab591.tar.zst
firejail-a5e72caa0a2b3ebb02f531459c73c221a12ab591.zip
fix cppcheck
Diffstat (limited to 'src')
-rw-r--r--src/firejail/paths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firejail/paths.c b/src/firejail/paths.c
index 7fed7bb80..84cae8efe 100644
--- a/src/firejail/paths.c
+++ b/src/firejail/paths.c
@@ -100,7 +100,7 @@ skip:;
100 assert(paths[i] == NULL); 100 assert(paths[i] == NULL);
101 path_cnt = i; 101 path_cnt = i;
102 if (arg_debug) 102 if (arg_debug)
103 printf("Number of path entries: %d\n", path_cnt); 103 printf("Number of path entries: %u\n", path_cnt);
104 104
105 // path_cnt may be too big now, if entries were skipped above 105 // path_cnt may be too big now, if entries were skipped above
106 path_cnt = i+1; 106 path_cnt = i+1;