Fix some signed/unsigned comparison warnings

Signed-off-by: AntonioND <antonio_nd@outlook.com>
This commit is contained in:
AntonioND
2017-04-02 17:07:25 +01:00
parent d61a0a8a8f
commit 43fd1ee024
5 changed files with 10 additions and 8 deletions

View File

@@ -60,7 +60,7 @@ readword(FILE * f)
SLONG
readasciiz(char **dest, FILE *f)
{
SLONG r = 0;
size_t r = 0;
size_t bufferLength = 16;
char *start = malloc(bufferLength);