more whitespace cleanup

This commit is contained in:
Aron Podrigal 2014-12-29 13:24:21 -05:00
parent 6be85bbef5
commit 2cad5a6940

View File

@ -1939,7 +1939,7 @@ SWITCH_STANDARD_API(cond_function)
while (switch_isspace(*expr)) expr++;
switch (*expr) {
switch(*expr) {
case '!':
case '<':
case '>':
@ -1949,7 +1949,7 @@ SWITCH_STANDARD_API(cond_function)
goto error;
}
operator:
operator:
switch (*expr) {
case '!':
@ -2087,9 +2087,9 @@ operator:
goto end;
}
error:
error:
stream->write_function(stream, "-ERR");
end:
end:
switch_safe_free(mydata);
return SWITCH_STATUS_SUCCESS;