diff options
author | Pavel Filipenský <pfilipensky@samba.org> | 2022-07-18 15:28:10 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2022-07-21 13:47:31 +0000 |
commit | 0086ce11dee7c836743e08ab601d57ba4157dd35 (patch) | |
tree | e4bfc94845e32f97f32212ceeafe934d90edf032 /source3/winbindd | |
parent | cd49a22c681ddfb68e2e52dca8ae39e0d5baa7d4 (diff) | |
download | samba-0086ce11dee7c836743e08ab601d57ba4157dd35.tar.gz |
s3:winbind: Change '%u' to '%PRIu32' for uint32_t in winbindd_getgrgid.c
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_getgrgid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_getgrgid.c b/source3/winbindd/winbindd_getgrgid.c index a4a6a0d6eb7..4edd81b004c 100644 --- a/source3/winbindd/winbindd_getgrgid.c +++ b/source3/winbindd/winbindd_getgrgid.c @@ -149,7 +149,7 @@ NTSTATUS winbindd_getgrgid_recv(struct tevent_req *req, response->length += talloc_get_size(response->extra_data.data); D_NOTICE("Winbind external command GETGRGID end.\n" - "Returning %u group member(s).\n", + "Returning %"PRIu32" group member(s).\n", response->data.gr.num_gr_mem); return NT_STATUS_OK; |