summaryrefslogtreecommitdiff
path: root/pr/tests/semaerr.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/semaerr.c')
-rw-r--r--pr/tests/semaerr.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pr/tests/semaerr.c b/pr/tests/semaerr.c
index 4da7c1c1..4e6a8ff2 100644
--- a/pr/tests/semaerr.c
+++ b/pr/tests/semaerr.c
@@ -33,7 +33,9 @@ int main(int argc, char **argv)
PRInt32 exit_code;
while (PL_OPT_EOL != (os = PL_GetNextOpt(opt))) {
- if (PL_OPT_BAD == os) continue;
+ if (PL_OPT_BAD == os) {
+ continue;
+ }
switch (opt->option) {
case 'd': /* debug mode */
debug_mode = PR_TRUE;