diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-19 18:34:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-10-19 18:34:32 +0000 |
commit | bea7409f908137b4795d626ac13525f0009d51c1 (patch) | |
tree | 0426aa3422142b0178653db42ab129ed2280e583 | |
parent | 52a27a1c87a426e7413c9e3111424afe158871aa (diff) |
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(); } |