Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/distrib/utils/sysinst/arch/mvme68k Quell a warning when a pa...
details: https://anonhg.NetBSD.org/src/rev/b2b686f16aab
branches: trunk
changeset: 532319:b2b686f16aab
user: scw <scw%NetBSD.org@localhost>
date: Wed Jun 05 08:50:09 2002 +0000
description:
Quell a warning when a partition starts at sector zero.
This is perfectly legitimate on mvme68k.
diffstat:
distrib/utils/sysinst/arch/mvme68k/md.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 3d323793ecb2 -r b2b686f16aab distrib/utils/sysinst/arch/mvme68k/md.c
--- a/distrib/utils/sysinst/arch/mvme68k/md.c Wed Jun 05 06:54:23 2002 +0000
+++ b/distrib/utils/sysinst/arch/mvme68k/md.c Wed Jun 05 08:50:09 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: md.c,v 1.1 2002/03/24 22:04:05 scw Exp $ */
+/* $NetBSD: md.c,v 1.2 2002/06/05 08:50:09 scw Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@@ -198,7 +198,7 @@
if (last < A)
last = part;
} else {
- if (start >= bsdlabel[part].pi_offset) {
+ if (start > bsdlabel[part].pi_offset) {
msg_display(MSG_ordering, part+'a');
process_menu(MENU_yesno);
if (yesno)
Home |
Main Index |
Thread Index |
Old Index