Commit 13b2233ce4e49a56bd57306ccff5195e739760a6
1 parent
c796fa4f
fixed spacing
Showing
1 changed file
with
2 additions
and
3 deletions
app/br/br.cpp
| ... | ... | @@ -180,11 +180,10 @@ public: |
| 180 | 180 | check(parc == 1, "Incorrect parameter count for 'daemon'."); |
| 181 | 181 | daemon = true; |
| 182 | 182 | daemon_pipe = parv[0]; |
| 183 | - } else if (!strcmp(fun,"slave")) { | |
| 183 | + } else if (!strcmp(fun, "slave")) { | |
| 184 | 184 | check(parc == 1, "Incorrect parameter count for 'slave'"); |
| 185 | 185 | br_slave_process(parv[0]); |
| 186 | - } | |
| 187 | - else if (!strcmp(fun, "exit")) { | |
| 186 | + } else if (!strcmp(fun, "exit")) { | |
| 188 | 187 | check(parc == 0, "No parameters expected for 'exit'."); |
| 189 | 188 | daemon = false; |
| 190 | 189 | } else if (!strcmp(fun, "getHeader")) { | ... | ... |