From b23244ccfdc78b673ceac04328d2b270a2fee915 Mon Sep 17 00:00:00 2001 From: davidrr Date: Thu, 31 Aug 2017 07:46:33 +0000 Subject: [PATCH] Added break statement on switch, to fix compilation errors git-svn-id: https://svn.code.sf.net/p/porg/code/trunk@189 8854956c-c02d-4db9-8198-7e99b8e08f37 --- porg/opt.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/porg/opt.cc b/porg/opt.cc index 2d9a240..ca1ef4c 100644 --- a/porg/opt.cc +++ b/porg/opt.cc @@ -205,7 +205,7 @@ Opt::Opt(int argc, char* argv[]) // unrecognized option - case '?': die_help(); + case '?': die_help(); break; // should have been case'd all recognized options