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