summaryrefslogtreecommitdiff
path: root/utilities/emptyvss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/emptyvss.cpp')
-rw-r--r--utilities/emptyvss.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/utilities/emptyvss.cpp b/utilities/emptyvss.cpp
index e4252f9..011484d 100644
--- a/utilities/emptyvss.cpp
+++ b/utilities/emptyvss.cpp
@@ -2,7 +2,7 @@
*
* emptyvss.cpp - Utility to list empty verses in a module
*
- * $Id: emptyvss.cpp 2931 2013-07-31 13:07:26Z scribe $
+ * $Id: emptyvss.cpp 3427 2016-07-03 14:30:33Z scribe $
*
* Copyright 2001-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
@@ -73,9 +73,11 @@ int main(int argc, char **argv) {
while (!mod->popError()) {
- if (vkey->getVerse())
- if (!mod->renderText().length())
- std::cout << *vkey << std::endl;
- (*mod)++;
+ if (vkey->getVerse()) {
+ if (!mod->renderText().length()) {
+ std::cout << *vkey << std::endl;
+ }
+ (*mod)++;
+ }
}
}