Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Fix "comments within comments" problem pointed out ...
details: https://anonhg.NetBSD.org/src/rev/581c6d151bb8
branches: trunk
changeset: 566084:581c6d151bb8
user: simonb <simonb%NetBSD.org@localhost>
date: Tue Apr 27 05:25:33 2004 +0000
description:
Fix "comments within comments" problem pointed out by Geoff Wing on
source-changes.
diffstat:
sys/kern/kern_time.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r 6facff405adc -r 581c6d151bb8 sys/kern/kern_time.c
--- a/sys/kern/kern_time.c Tue Apr 27 05:07:46 2004 +0000
+++ b/sys/kern/kern_time.c Tue Apr 27 05:25:33 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_time.c,v 1.83 2004/04/27 01:12:44 kleink Exp $ */
+/* $NetBSD: kern_time.c,v 1.84 2004/04/27 05:25:33 simonb Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -68,7 +68,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.83 2004/04/27 01:12:44 kleink Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_time.c,v 1.84 2004/04/27 05:25:33 simonb Exp $");
#include "fs_nfs.h"
#include "opt_nfs.h"
@@ -327,7 +327,7 @@
{
struct sys_gettimeofday_args /* {
syscallarg(struct timeval *) tp;
- syscallarg(void *) tzp; /* struct timezone * */
+ syscallarg(void *) tzp; really "struct timezone *"
} */ *uap = v;
struct timeval atv;
int error = 0;
@@ -357,7 +357,7 @@
{
struct sys_settimeofday_args /* {
syscallarg(const struct timeval *) tv;
- syscallarg(const void *) tzp; /* const struct timezone * */
+ syscallarg(const void *) tzp; really "const struct timezone *"
} */ *uap = v;
struct proc *p = l->l_proc;
int error;
Home |
Main Index |
Thread Index |
Old Index