Add a missing "break;" statement so that this actually works again.

This commit is contained in:
thorpej 2002-01-22 01:14:03 +00:00
parent aaa59fa5b0
commit 6e4e75cdae
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: xlint.c,v 1.25 2002/01/21 19:49:52 tv Exp $ */
/* $NetBSD: xlint.c,v 1.26 2002/01/22 01:14:03 thorpej Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All Rights Reserved.
@ -34,7 +34,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: xlint.c,v 1.25 2002/01/21 19:49:52 tv Exp $");
__RCSID("$NetBSD: xlint.c,v 1.26 2002/01/22 01:14:03 thorpej Exp $");
#endif
#include <sys/param.h>
@ -502,6 +502,7 @@ main(int argc, char *argv[])
fname(argv[optind], argc == optind+1);
first = 0;
optind++;
break;
default:
usage();