mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix warning in debug printf. This is a long on alpha, and int on i386,
but printed with %ld always.
This commit is contained in:
parent
bc5f905080
commit
170a2c575c
1 changed files with 1 additions and 1 deletions
|
|
@ -413,7 +413,7 @@ linux_getcwd(struct thread *td, struct linux_getcwd_args *args)
|
|||
|
||||
#ifdef DEBUG
|
||||
printf("Linux-emul(%ld): getcwd(%p, %ld)\n", (long)td->td_proc->p_pid,
|
||||
args->buf, args->bufsize);
|
||||
args->buf, (long)args->bufsize);
|
||||
#endif
|
||||
|
||||
sg = stackgap_init();
|
||||
|
|
|
|||
Loading…
Reference in a new issue