aboutsummaryrefslogtreecommitdiffstats
path: root/src/userinfo.c
diff options
context:
space:
mode:
authorMartin Pärtel <martin.partel@gmail.com>2021-02-15 05:31:32 +0200
committerMartin Pärtel <martin.partel@gmail.com>2021-02-15 05:31:32 +0200
commit21e8f410368d4b20cfa967a7cd3cf98da533e337 (patch)
tree2fe35673480336fdb57f4ecefa931ba6fb6a164e /src/userinfo.c
parentbc3002cc464231ecdd0f1938184594f3f35ae767 (diff)
downloadbindfs-21e8f410368d4b20cfa967a7cd3cf98da533e337.tar.gz
Fixed permchain.c on older compilers. Enabled -Wpedantic.
Diffstat (limited to 'src/userinfo.c')
-rw-r--r--src/userinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userinfo.c b/src/userinfo.c
index 2a72bf3..a3ac91c 100644
--- a/src/userinfo.c
+++ b/src/userinfo.c
@@ -330,7 +330,7 @@ int user_belongs_to_group(uid_t uid, gid_t gid)
pthread_rwlock_wrlock(&cache_lock);
if (cache_rebuild_requested) {
- DPRINTF("Building user/group cache");
+ DPRINTF("%s", "Building user/group cache");
cache_rebuild_requested = 0;
rebuild_cache();
}