Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sbin/disklabel change "millisecond" to "microsecond" for hea...
details: https://anonhg.NetBSD.org/src/rev/030836406fdd
branches: trunk
changeset: 479744:030836406fdd
user: fair <fair%NetBSD.org@localhost>
date: Mon Dec 20 18:19:18 1999 +0000
description:
change "millisecond" to "microsecond" for headswitch and track seek
comments, to resolve PR 8189. This makes the documentation for these
fields consistent. Not that it matters - a grep of syssrc shows that
these fields aren't actually used for anything and should probably be
GC'd.
diffstat:
sbin/disklabel/disklabel.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (30 lines):
diff -r bd363976273a -r 030836406fdd sbin/disklabel/disklabel.c
--- a/sbin/disklabel/disklabel.c Mon Dec 20 17:26:50 1999 +0000
+++ b/sbin/disklabel/disklabel.c Mon Dec 20 18:19:18 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: disklabel.c,v 1.78 1999/11/26 06:03:09 mrg Exp $ */
+/* $NetBSD: disklabel.c,v 1.79 1999/12/20 18:19:18 fair Exp $ */
/*
* Copyright (c) 1987, 1993
@@ -47,7 +47,7 @@
static char sccsid[] = "@(#)disklabel.c 8.4 (Berkeley) 5/4/95";
/* from static char sccsid[] = "@(#)disklabel.c 1.2 (Symmetric) 11/28/85"; */
#else
-__RCSID("$NetBSD: disklabel.c,v 1.78 1999/11/26 06:03:09 mrg Exp $");
+__RCSID("$NetBSD: disklabel.c,v 1.79 1999/12/20 18:19:18 fair Exp $");
#endif
#endif /* not lint */
@@ -1152,9 +1152,9 @@
(void) fprintf(f, "interleave: %ld\n", (long) lp->d_interleave);
(void) fprintf(f, "trackskew: %ld\n", (long) lp->d_trackskew);
(void) fprintf(f, "cylinderskew: %ld\n", (long) lp->d_cylskew);
- (void) fprintf(f, "headswitch: %ld\t\t# milliseconds\n",
+ (void) fprintf(f, "headswitch: %ld\t\t# microseconds\n",
(long) lp->d_headswitch);
- (void) fprintf(f, "track-to-track seek: %ld\t# milliseconds\n",
+ (void) fprintf(f, "track-to-track seek: %ld\t# microseconds\n",
(long) lp->d_trkseek);
(void) fprintf(f, "drivedata: ");
for (i = NDDATA - 1; i >= 0; i--)
Home |
Main Index |
Thread Index |
Old Index