Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Fix type in comment



details:   https://anonhg.NetBSD.org/src/rev/b9a628b81a42
branches:  trunk
changeset: 765685:b9a628b81a42
user:      dsl <dsl%NetBSD.org@localhost>
date:      Thu Jun 02 18:54:43 2011 +0000

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

diffstat:

 sys/kern/vfs_syscalls.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a50607649b7a -r b9a628b81a42 sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c   Thu Jun 02 18:53:00 2011 +0000
+++ b/sys/kern/vfs_syscalls.c   Thu Jun 02 18:54:43 2011 +0000
@@ -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;



Home | Main Index | Thread Index | Old Index