mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix type of printf argument
This commit is contained in:
parent
86cc18931f
commit
9a83009d33
@ -518,7 +518,8 @@ int find_sid_for_ldap_entry(struct slapi_entry *entry,
|
||||
|
||||
ret = find_sid_for_id(id, plugin_id, base_dn, dom_sid, ranges, &sid);
|
||||
if (ret != 0) {
|
||||
LOG_FATAL("Cannot convert Posix ID [%lu] into an unused SID.\n", id);
|
||||
LOG_FATAL("Cannot convert Posix ID [%lu] into an unused SID.\n",
|
||||
(unsigned long) id);
|
||||
goto done;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user