Fix a change in a debug printf I missed in an earlier commit.

This commit is contained in:
jhb 2005-04-05 15:28:06 +00:00
parent 224fe6574b
commit ccac0d9728

View File

@ -590,7 +590,7 @@ linux_mmap(struct thread *td, struct linux_mmap_args *args)
printf(ARGS(mmap, "%p, %d, %d, 0x%08x, %d, %d"),
(void *)(intptr_t)linux_args.addr, linux_args.len,
linux_args.prot, linux_args.flags, linux_args.fd,
linux_args.pos);
linux_args.pgoff);
#endif
if ((linux_args.pgoff % PAGE_SIZE) != 0)
return (EINVAL);