From ccac0d97285684a96d1d1f701e0112821c2848ff Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 5 Apr 2005 15:28:06 +0000 Subject: [PATCH] Fix a change in a debug printf I missed in an earlier commit. --- sys/amd64/linux32/linux32_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/linux32/linux32_machdep.c b/sys/amd64/linux32/linux32_machdep.c index 99585a4cd502..fa15b2402a51 100644 --- a/sys/amd64/linux32/linux32_machdep.c +++ b/sys/amd64/linux32/linux32_machdep.c @@ -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);