1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

Fix compiler warning in debug message.

This commit is contained in:
Jeremy Allison 2011-03-17 10:35:10 -07:00
parent ef078307d9
commit 3d6a92a37b

View File

@ -2231,7 +2231,7 @@ static bool pdb_ads_sid_to_id(struct pdb_methods *m, const struct dom_sid *sid,
}
if (talloc_array_length(msg) != 1) {
DEBUG(10, ("Got %d objects, expected 1\n",
talloc_array_length(msg)));
(int)talloc_array_length(msg)));
goto fail;
}
if (!tldap_pull_uint32(msg[0], "samAccountType", &atype)) {