Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/xlint/xlint Add a missing "break; " statement so that...



details:   https://anonhg.NetBSD.org/src/rev/50a53da91946
branches:  trunk
changeset: 521028:50a53da91946
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Jan 22 01:14:03 2002 +0000

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

diffstat:

 usr.bin/xlint/xlint/xlint.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 17481f30fa6b -r 50a53da91946 usr.bin/xlint/xlint/xlint.c
--- a/usr.bin/xlint/xlint/xlint.c       Tue Jan 22 00:59:46 2002 +0000
+++ b/usr.bin/xlint/xlint/xlint.c       Tue Jan 22 01:14:03 2002 +0000
@@ -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 @@
                        fname(argv[optind], argc == optind+1);
                        first = 0;
                        optind++;
+                       break;
 
                default:
                        usage();



Home | Main Index | Thread Index | Old Index