1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r23355: Fix some more build warnings.

Guenther
(This used to be commit 23e25bba8f)
This commit is contained in:
Günther Deschner 2007-06-05 10:49:05 +00:00 committed by Gerald (Jerry) Carter
parent 3e3e359d12
commit 454de808a2
2 changed files with 3 additions and 3 deletions

View File

@ -969,7 +969,7 @@ static NTSTATUS lookup_groupmem(struct winbindd_domain *domain,
goto done;
}
DEBUG(10, ("ads lookup_groupmem: got %d sids via extended dn call\n", num_members));
DEBUG(10, ("ads lookup_groupmem: got %d sids via extended dn call\n", (int)num_members));
/* Now that we have a list of sids, we need to get the
* lists of names and name_types belonging to these sids.
@ -1078,7 +1078,7 @@ static NTSTATUS lookup_groupmem(struct winbindd_domain *domain,
else if (!NT_STATUS_IS_OK(status)) {
DEBUG(10, ("lookup_groupmem: Error looking up %d "
"sids via rpc_lsa_lookup_sids: %s\n",
num_members, nt_errstr(status)));
(int)num_members, nt_errstr(status)));
goto done;
}
}

View File

@ -3419,7 +3419,7 @@ int winbindd_validate_cache(void)
if (bytes_read != sizeof(v_status)) {
DEBUG(10, ("winbindd_validate_cache: read %d bytes from pipe "
"but expected %d", bytes_read, sizeof(v_status)));
"but expected %d", bytes_read, (int)sizeof(v_status)));
DEBUGADD(10, (" -> assuming child crashed\n"));
v_status.success = False;
}