mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-07-14 19:16:59 +00:00
Add parenthesis around logical
This commit is contained in:
parent
95904f656e
commit
49fcfbf874
@ -733,7 +733,7 @@ static int process_cdata_tts(struct ssml_parser *parsed_data, char *data, size_t
|
|||||||
|
|
||||||
/* is CDATA either non-ascii or graphic? */
|
/* is CDATA either non-ascii or graphic? */
|
||||||
for (i = 0; i < len && !present; i++) {
|
for (i = 0; i < len && !present; i++) {
|
||||||
present |= !(isascii(data[i])) | isgraph(data[i]);
|
present |= (!isascii(data[i]) | isgraph(data[i]));
|
||||||
}
|
}
|
||||||
if (!present) {
|
if (!present) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Skipping empty tts\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Skipping empty tts\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user