From: Pavel Filipenský Date: Mon, 18 Jul 2022 13:28:11 +0000 (+0200) Subject: s3:winbind: Change '%u' to '%PRIu32' for uint32_t in winbindd_xids_to_sids.c X-Git-Tag: tevent-0.13.0~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa5ddc23adbe60b32852e76d8c7167c0e45c03da;p=thirdparty%2Fsamba.git s3:winbind: Change '%u' to '%PRIu32' for uint32_t in winbindd_xids_to_sids.c Signed-off-by: Pavel Filipenský Reviewed-by: Andreas Schneider --- diff --git a/source3/winbindd/winbindd_xids_to_sids.c b/source3/winbindd/winbindd_xids_to_sids.c index 5d97d0231f5..3420377c167 100644 --- a/source3/winbindd/winbindd_xids_to_sids.c +++ b/source3/winbindd/winbindd_xids_to_sids.c @@ -126,7 +126,7 @@ NTSTATUS winbindd_xids_to_sids_recv(struct tevent_req *req, str = sid_buf.buf; } - D_NOTICE("%u: XID %u mapped to SID %s.\n", + D_NOTICE("%"PRIu32": XID %"PRIu32" mapped to SID %s.\n", i, state->xids[i].id, str); result = talloc_asprintf_append_buffer( result, "%s\n", str);