s3:winbind: Change '%u' to '%PRIu32' for uint32_t in wb_query_group_list.c
authorPavel Filipenský <pfilipensky@samba.org>
Mon, 18 Jul 2022 13:28:10 +0000 (15:28 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Thu, 21 Jul 2022 13:47:31 +0000 (13:47 +0000)
Signed-off-by: Pavel Filipenský <pfilipensky@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
source3/winbindd/wb_query_group_list.c

index e7c1f734e09417ca65b9f67d20fb848268664557..a71e162c7fee396d6ec12742271aad1ef9968e77 100644 (file)
@@ -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;
 }