mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 18:41:57 +00:00
fixed indentation
This commit is contained in:
parent
ff2729c370
commit
6be85bbef5
@ -1922,9 +1922,9 @@ SWITCH_STANDARD_API(cond_function)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!*expr) {
|
if (!*expr) {
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
*expr++ = '\0';
|
*expr++ = '\0';
|
||||||
|
|
||||||
if (!switch_isspace(*expr)) {
|
if (!switch_isspace(*expr)) {
|
||||||
goto error;
|
goto error;
|
||||||
@ -1934,20 +1934,20 @@ SWITCH_STANDARD_API(cond_function)
|
|||||||
*expr++ = '\0';
|
*expr++ = '\0';
|
||||||
} else {
|
} else {
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (switch_isspace(*expr)) expr++;
|
while (switch_isspace(*expr)) expr++;
|
||||||
|
|
||||||
switch (*expr) {
|
switch (*expr) {
|
||||||
case '!':
|
case '!':
|
||||||
case '<':
|
case '<':
|
||||||
case '>':
|
case '>':
|
||||||
case '=':
|
case '=':
|
||||||
goto operator;
|
goto operator;
|
||||||
default:
|
default:
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
operator:
|
operator:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user