signed/unsigned fixes, and some other fixes

This commit is contained in:
erorcun
2020-12-27 05:23:37 +03:00
parent c5010d443c
commit 36e64dbd22
13 changed files with 48 additions and 43 deletions

View File

@ -2986,12 +2986,12 @@ CCamera::LoadTrainCamNodes(char const *name)
char token[16] = { 0 };
char filename[16] = { 0 };
uint8 *buf;
size_t bufpos = 0;
ssize_t bufpos = 0;
int field = 0;
int tokpos = 0;
char c;
int i;
size_t len;
ssize_t len;
strcpy(filename, name);
len = (int)strlen(filename);