Add parenthesis around logical

This commit is contained in:
David Wilkie 2021-09-17 15:08:05 +07:00
parent 95904f656e
commit 49fcfbf874
1 changed files with 1 additions and 1 deletions

View File

@ -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? */
for (i = 0; i < len && !present; i++) {
present |= !(isascii(data[i])) | isgraph(data[i]);
present |= (!isascii(data[i]) | isgraph(data[i]));
}
if (!present) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Skipping empty tts\n");