diff options
author | peter <peter@FreeBSD.org> | 2002-02-27 23:21:46 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-02-27 23:21:46 +0000 |
commit | d61500d1a77cb5e5d674c16d2bccb280a1645bfb (patch) | |
tree | b1da2afc4a20b5d768c21bcce8b45f9cdb013b2b /sys/i386/linux | |
parent | 717a71dbad484661d16193ab7b9410b9a0dfc0aa (diff) | |
download | FreeBSD-src-d61500d1a77cb5e5d674c16d2bccb280a1645bfb.zip FreeBSD-src-d61500d1a77cb5e5d674c16d2bccb280a1645bfb.tar.gz |
Fix format warning.
Submitted by: LINT, -Werror
Diffstat (limited to 'sys/i386/linux')
-rw-r--r-- | sys/i386/linux/linux_machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/linux/linux_machdep.c b/sys/i386/linux/linux_machdep.c index 33a4ee2..59325c4 100644 --- a/sys/i386/linux/linux_machdep.c +++ b/sys/i386/linux/linux_machdep.c @@ -250,7 +250,7 @@ linux_old_select(struct thread *td, struct linux_old_select_args *args) #ifdef DEBUG if (ldebug(old_select)) - printf(ARGS(old_select, "%x"), args->ptr); + printf(ARGS(old_select, "%p"), args->ptr); #endif error = copyin((caddr_t)args->ptr, &linux_args, sizeof(linux_args)); |