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

const int *to; const int *to;
bool upper_case = false; bool upper_case = false;


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


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

Loading…
Cancel
Save