Fix type of printf argument

This commit is contained in:
Sumit Bose 2013-06-07 18:17:55 +02:00 committed by Martin Kosek
parent 86cc18931f
commit 9a83009d33

View File

@ -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;
}