diff options
author | 2007-10-19 18:34:31 +0000 | |
---|---|---|
committer | 2007-10-19 18:34:31 +0000 | |
commit | d6e52fbe61aa2854c6f6d9d2eabc7ae051cb60e2 (patch) | |
tree | 435609bb80b171182a346d44751ad0db1f88054d | |
parent | remove vars from some prototypes. (diff) | |
download | wireguard-openbsd-d6e52fbe61aa2854c6f6d9d2eabc7ae051cb60e2.tar.xz wireguard-openbsd-d6e52fbe61aa2854c6f6d9d2eabc7ae051cb60e2.zip |
missing break; spotted by robert, marco did not read the diff well enough or try it
-rw-r--r-- | usr.sbin/acpidump/acpidump.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/acpidump/acpidump.c b/usr.sbin/acpidump/acpidump.c index 8c02207d60e..68f1718691c 100644 --- a/usr.sbin/acpidump/acpidump.c +++ b/usr.sbin/acpidump/acpidump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidump.c,v 1.3 2007/10/17 18:58:24 deraadt Exp $ */ +/* $OpenBSD: acpidump.c,v 1.4 2007/10/19 18:34:31 deraadt Exp $ */ /*- * Copyright (c) 2000 Mitsuru IWASAKI <iwasaki@FreeBSD.org> * All rights reserved. @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: acpidump.c,v 1.3 2007/10/17 18:58:24 deraadt Exp $ + * $Id: acpidump.c,v 1.4 2007/10/19 18:34:31 deraadt Exp $ * $FreeBSD: src/usr.sbin/acpi/acpidump/acpidump.c,v 1.3 2000/11/08 02:37:00 iwasaki Exp $ */ @@ -88,6 +88,7 @@ main(int argc, char *argv[]) return (0); case 'o': aml_dumpfile = optarg; + break; default: usage(); } |