summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-06-30 15:26:13 +0000
committerMorgan Deters <mdeters@gmail.com>2010-06-30 15:26:13 +0000
commit4d2c7ccaa905534342fe99a23fc137c75a707d6a (patch)
treeae6b4c2675f266f083b3aab8a49cb9aa1711959c /src
parent5a66af8d04cf854746f5e1b2902b1d29ba537429 (diff)
fix to switch fall-through; stats now off by default regardless of -d debugging options; thanks Chris for spoting this
Diffstat (limited to 'src')
-rw-r--r--src/main/getopt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/getopt.cpp b/src/main/getopt.cpp
index eed542e8a..88840a8e8 100644
--- a/src/main/getopt.cpp
+++ b/src/main/getopt.cpp
@@ -196,7 +196,7 @@ throw(OptionException) {
case 'd':
Debug.on(optarg);
Trace.on(optarg);
- /* fall-through */
+ break;
case STATS:
opts->statistics = true;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback