]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:winbind: Change '%u' to '%PRIu32' for uint32_t in wb_group_members.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_group_members.c

index cb093ed2263807bbf9188a9b115b227dbbb47d91..65ae4271d57f74b762d727a90c131f74066e3f52 100644 (file)
@@ -157,7 +157,7 @@ static struct tevent_req *wb_groups_members_send(TALLOC_CTX *mem_ctx,
        state->next_group = 0;
        state->all_members = NULL;
 
-       D_DEBUG("Looking up %u group(s).\n", num_groups);
+       D_DEBUG("Looking up %"PRIu32" group(s).\n", num_groups);
        status = wb_groups_members_next_subreq(state, state, &subreq);
        if (tevent_req_nterror(req, status)) {
                return tevent_req_post(req, ev);
@@ -223,7 +223,7 @@ static void wb_groups_members_done(struct tevent_req *subreq)
 
        num_all_members = talloc_array_length(state->all_members);
 
-       D_DEBUG("Adding %u new member(s) to existing %u member(s)\n",
+       D_DEBUG("Adding %"PRIu32" new member(s) to existing %"PRIu32" member(s)\n",
                num_members,
                num_all_members);