From 5fa702dfc6cba07ce897195a7386bd29338e0604 Mon Sep 17 00:00:00 2001 From: billf Date: Wed, 21 Jul 1999 03:04:36 +0000 Subject: Fix a gcc stupidity where it thought a variable was being used uninitialized Add a case for UNSPEC which is in order by the enum definition, but out of order alphabetically. --- sbin/disklabel/disklabel.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sbin/disklabel') diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index ff04e4b..e084f3d 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -46,7 +46,7 @@ static char sccsid[] = "@(#)disklabel.c 8.2 (Berkeley) 1/7/94"; /* from static char sccsid[] = "@(#)disklabel.c 1.2 (Symmetric) 11/28/85"; */ #endif static const char rcsid[] = - "$Id: disklabel.c,v 1.23 1998/10/23 18:57:39 bde Exp $"; + "$Id: disklabel.c,v 1.24 1998/12/17 16:50:10 jkh Exp $"; #endif /* not lint */ #include @@ -150,7 +150,7 @@ main(argc, argv) { register struct disklabel *lp; FILE *t; - int ch, f, flag, error = 0; + int ch, f = 0, flag, error = 0; char *name = 0; while ((ch = getopt(argc, argv, OPTIONS)) != -1) @@ -242,6 +242,9 @@ main(argc, argv) switch(op) { + case UNSPEC: + break; + case EDIT: if (argc != 1) usage(); -- cgit v1.1