From: Pavel Filipenský Date: Mon, 18 Jul 2022 13:28:10 +0000 (+0200) Subject: s3:winbind: Change '%u' to '%PRIu32' for uint32_t in wb_query_group_list.c X-Git-Tag: tevent-0.13.0~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55510a931e4c89a5fefc3155a991705d8911581b;p=thirdparty%2Fsamba.git s3:winbind: Change '%u' to '%PRIu32' for uint32_t in wb_query_group_list.c Signed-off-by: Pavel Filipenský Reviewed-by: Andreas Schneider --- diff --git a/source3/winbindd/wb_query_group_list.c b/source3/winbindd/wb_query_group_list.c index e7c1f734e09..a71e162c7fe 100644 --- a/source3/winbindd/wb_query_group_list.c +++ b/source3/winbindd/wb_query_group_list.c @@ -89,6 +89,6 @@ NTSTATUS wb_query_group_list_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, *groups = talloc_move(mem_ctx, &state->groups.principals); D_INFO("WB command group_list end.\n" - "Returning %u group(s).\n", *num_groups); + "Returning %"PRIu32" group(s).\n", *num_groups); return NT_STATUS_OK; }