Module Name:    src
Committed By:   dsl
Date:           Thu Jun  2 18:54:44 UTC 2011

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

Log Message:
Fix type in comment
(before I replace the 'l' with 'curlwp')


To generate a diff of this commit:
cvs rdiff -u -r1.423 -r1.424 src/sys/kern/vfs_syscalls.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_syscalls.c
diff -u src/sys/kern/vfs_syscalls.c:1.423 src/sys/kern/vfs_syscalls.c:1.424
--- src/sys/kern/vfs_syscalls.c:1.423	Sun Apr 24 21:35:29 2011
+++ src/sys/kern/vfs_syscalls.c	Thu Jun  2 18:54:43 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_syscalls.c,v 1.423 2011/04/24 21:35:29 rmind Exp $	*/
+/*	$NetBSD: vfs_syscalls.c,v 1.424 2011/06/02 18:54:43 dsl Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.423 2011/04/24 21:35:29 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.424 2011/06/02 18:54:43 dsl Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -3048,7 +3048,7 @@
 		nflags |= FSYNC_CACHE;
 
 	len = SCARG(uap, length);
-	/* If length == 0, we do the whole file, and s = l = 0 will do that */
+	/* If length == 0, we do the whole file, and s = e = 0 will do that */
 	if (len) {
 		s = SCARG(uap, start);
 		e = s + len;

Reply via email to