Browse Source

TranslateChars: Supress an unsigned to signed cast

master
Reece H. Dunn 7 years ago
parent
commit
801a8d197c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/translate.c

+ 1
- 1
src/libespeak-ng/translate.c View File

@@ -1900,7 +1900,7 @@ static void TranslateChars(Translator *tr, char *source)
const int *to;
bool upper_case = false;

if ((from = tr->langopts.replace_chars) == NULL)
if ((from = (const int *)tr->langopts.replace_chars) == NULL)
return;

char *curchar = source; // pointer to the source clause

Loading…
Cancel
Save