Module Name:    src
Committed By:   elad
Date:           Tue Jun 23 23:04:11 UTC 2009

Modified Files:
        src/sys/kern: vfs_subr.c

Log Message:
Wow... too much Python.

Fix DIAGNOSTIC build breakage: print -> printf.

Pointed out by Kurt Schreiner on current-users@:

    http://mail-index.netbsd.org/current-users/2009/06/23/msg009815.html


To generate a diff of this commit:
cvs rdiff -u -r1.380 -r1.381 src/sys/kern/vfs_subr.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/kern/vfs_subr.c
diff -u src/sys/kern/vfs_subr.c:1.380 src/sys/kern/vfs_subr.c:1.381
--- src/sys/kern/vfs_subr.c:1.380	Tue Jun 23 19:36:38 2009
+++ src/sys/kern/vfs_subr.c	Tue Jun 23 23:04:11 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_subr.c,v 1.380 2009/06/23 19:36:38 elad Exp $	*/
+/*	$NetBSD: vfs_subr.c,v 1.381 2009/06/23 23:04:11 elad Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 2004, 2005, 2007, 2008 The NetBSD Foundation, Inc.
@@ -91,7 +91,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.380 2009/06/23 19:36:38 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_subr.c,v 1.381 2009/06/23 23:04:11 elad Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -2595,7 +2595,7 @@
 {
 
 #ifdef DIAGNOSTIC
-	print("vaccess: deprecated interface used.\n");
+	printf("vaccess: deprecated interface used.\n");
 #endif /* DIAGNOSTIC */
 
 	return genfs_can_access(type, file_mode, uid, gid, acc_mode, cred);

Reply via email to