summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_misc.c
diff options
context:
space:
mode:
authormanu <manu@NetBSD.org>2005-11-23 22:23:30 +0000
committermanu <manu@NetBSD.org>2005-11-23 22:23:30 +0000
commitc06b3dd8a8ccc72009307c36125ef078a69bf05b (patch)
tree7da1a50a54504d2de8307e3e892ad8c4ddb56f48 /sys/compat/linux/common/linux_misc.c
parentdcc61c764fa561ac894cb3280f9446daa1f90fb3 (diff)
Remove a debug printf
Diffstat (limited to 'sys/compat/linux/common/linux_misc.c')
-rw-r--r--sys/compat/linux/common/linux_misc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_misc.c b/sys/compat/linux/common/linux_misc.c
index 12a7e2ee818..e08e60e51e5 100644
--- a/sys/compat/linux/common/linux_misc.c
+++ b/sys/compat/linux/common/linux_misc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_misc.c,v 1.144 2005/11/23 16:14:57 manu Exp $ */
+/* $NetBSD: linux_misc.c,v 1.145 2005/11/23 22:23:30 manu Exp $ */
/*-
* Copyright (c) 1995, 1998, 1999 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.144 2005/11/23 16:14:57 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.145 2005/11/23 22:23:30 manu Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1700,7 +1700,6 @@ linux_sys_getrlimit(l, v, retval)
return error;
if ((error = copyin(SCARG(&ap, rlp), &rl, sizeof(rl))) != 0)
return error;
- printf("bsd max limit: %lx\n", rl.rlim_max);
bsd_to_linux_rlimit(&orl, &rl);
printf(" %lx\n", (unsigned long)orl.rlim_max);
return copyout(&orl, SCARG(uap, rlp), sizeof(orl));