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.
This commit is contained in:
Bill Fumerola 1999-07-21 03:04:36 +00:00
parent c1160fe492
commit 3b3038a651
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48957
2 changed files with 10 additions and 4 deletions

View File

@ -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 <sys/param.h>
@ -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();

View File

@ -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 <sys/param.h>
@ -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();