Try to fix compile errors on 64 bit systems.

svn path=/trunk/; revision=34561
This commit is contained in:
Bill Meier 2010-10-18 18:37:07 +00:00
parent 8832221ca4
commit be1a3f5a7e
1 changed files with 3 additions and 1 deletions

View File

@ -262,7 +262,9 @@ static void add_symbols_of_file(const char *filename)
if (pFile != NULL) {
char line[256];
while (fgets(line, sizeof line, pFile) != NULL) {
int length, pos, hash;
int hash;
size_t length, pos;
length = strlen(line);
/* Must at least have a hash, else skip line */