Module Name:    src
Committed By:   matt
Date:           Mon Nov 16 22:52:27 UTC 2009

Modified Files:
        src/sys/compat/netbsd32 [matt-nb5-mips64]: netbsd32_fs.c

Log Message:
remove debug printf


To generate a diff of this commit:
cvs rdiff -u -r1.55.14.1 -r1.55.14.2 src/sys/compat/netbsd32/netbsd32_fs.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/netbsd32/netbsd32_fs.c
diff -u src/sys/compat/netbsd32/netbsd32_fs.c:1.55.14.1 src/sys/compat/netbsd32/netbsd32_fs.c:1.55.14.2
--- src/sys/compat/netbsd32/netbsd32_fs.c:1.55.14.1	Sun Sep 13 06:19:43 2009
+++ src/sys/compat/netbsd32/netbsd32_fs.c	Mon Nov 16 22:52:27 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: netbsd32_fs.c,v 1.55.14.1 2009/09/13 06:19:43 matt Exp $	*/
+/*	$NetBSD: netbsd32_fs.c,v 1.55.14.2 2009/11/16 22:52:27 matt Exp $	*/
 
 /*
  * Copyright (c) 1998, 2001 Matthew R. Green
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.55.14.1 2009/09/13 06:19:43 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_fs.c,v 1.55.14.2 2009/11/16 22:52:27 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -847,10 +847,8 @@
 	}
 	error = do_sys_mount(l, NULL, type, path, flags, data, data_seg,
 	    data_len, retval);
-	if (error) {
-		printf("do_sys_mount(%s): %p, %p, %#x, %p, %d, %zu, %p: failed: error %d\n", mtype, type, path, flags, data, data_seg, data_len, retval, error);
+	if (error)
 		return error;
-	}
 	if (flags & MNT_GETARGS) {
 		data_len = *retval;
 		if (strcmp(mtype, MOUNT_MFS) == 0) {

Reply via email to