This fixes the clang warning:
comparison of unsigned expression < 0 is always false
[-Wtautological-compare]
Reported by Reef Turner <[email protected]>
master
| @@ -198,7 +198,7 @@ int LoadDictionary(Translator *tr, const char *name, int no_error) | |||
| int *pw; | |||
| int length; | |||
| FILE *f; | |||
| unsigned int size; | |||
| int size; | |||
| char fname[sizeof(path_home)+20]; | |||
| strncpy(dictionary_name, name, 40); // currently loaded dictionary name | |||
| @@ -73,7 +73,7 @@ static espeak_ng_STATUS ReadPhFile(void **ptr, const char *fname, int *size, esp | |||
| if (!ptr) return EINVAL; | |||
| FILE *f_in; | |||
| unsigned int length; | |||
| int length; | |||
| char buf[sizeof(path_home)+40]; | |||
| sprintf(buf, "%s%c%s", path_home, PATHSEP, fname); | |||