* bsd_helper.cc: Replace %E __small_printf format specifier with %lu
and call to GetLastError throughout. * bsd_mutex.cc: Ditto. * sysv_sem.cc (semget): Replace %X __small_printf format specifier with %llx.
This commit is contained in:
@@ -875,7 +875,7 @@ semget(struct thread *td, struct semget_args *uap)
|
||||
struct ucred *cred = td->td_ucred;
|
||||
#endif
|
||||
|
||||
DPRINTF(("semget(0x%X, %d, 0%o)\n", key, nsems, semflg));
|
||||
DPRINTF(("semget(0x%llx, %d, 0%o)\n", key, nsems, semflg));
|
||||
if (!jail_sysvipc_allowed && jailed(td->td_ucred))
|
||||
return (ENOSYS);
|
||||
|
||||
|
Reference in New Issue
Block a user