Remove a debug printf

This commit is contained in:
manu 2005-11-23 22:23:30 +00:00
parent dcc61c764f
commit c06b3dd8a8
1 changed files with 2 additions and 3 deletions

View File

@ -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));