Skip to content
Snippets Groups Projects
Commit d0553094 authored by John Romein's avatar John Romein
Browse files

bug 225:

Put curly braces around macros.
parent ce16df1d
No related branches found
No related tags found
No related merge requests found
...@@ -53,29 +53,37 @@ namespace LOFAR ...@@ -53,29 +53,37 @@ namespace LOFAR
uint noRuns = arg.getUint32("NoRuns", 0); uint noRuns = arg.getUint32("NoRuns", 0);
LOG_DEBUG(progName + " starting define"); LOG_DEBUG(progName + " starting define");
if (err = err || !define()) LOG_ERROR("Error during define()"); if (err = err || !define()) {
else { LOG_ERROR("Error during define()");
} else {
LOG_DEBUG(progName + " initializing"); LOG_DEBUG(progName + " initializing");
if (err = err || !init()) LOG_ERROR("Error during init()"); if (err = err || !init()) {
else { LOG_ERROR("Error during init()");
} else {
LOG_DEBUG_STR(progName + " running (noRuns=" << noRuns << ")"); LOG_DEBUG_STR(progName + " running (noRuns=" << noRuns << ")");
if (noRuns > 0) if (noRuns > 0)
do err = err || !run(); while (inRunState() && --noRuns > 0); do err = err || !run(); while (inRunState() && --noRuns > 0);
else else
do err = err || !run(); while (inRunState()); do err = err || !run(); while (inRunState());
if (err) LOG_ERROR("Error during run()"); if (err) {
else { LOG_ERROR("Error during run()");
} else {
LOG_DEBUG(progName + " pausing now"); LOG_DEBUG(progName + " pausing now");
if (err = err || !pause(PAUSE_OPTION_NOW)) if (err = err || !pause(PAUSE_OPTION_NOW)) {
LOG_ERROR("Error during pause()"); LOG_ERROR("Error during pause()");
}
} }
} }
} }
LOG_DEBUG(progName + " releasing"); LOG_DEBUG(progName + " releasing");
if (err = err || !release()) LOG_ERROR("Error during release()"); if (err = err || !release()) {
LOG_ERROR("Error during release()");
}
LOG_DEBUG(progName + " quitting"); LOG_DEBUG(progName + " quitting");
if (err = err || !quit()) LOG_ERROR("Error during quit()"); if (err = err || !quit()) {
LOG_ERROR("Error during quit()");
}
return (err); return (err);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment