diff options
author | John van Groningen | 2006-06-28 12:19:27 +0000 |
---|---|---|
committer | John van Groningen | 2006-06-28 12:19:27 +0000 |
commit | 38b930ebdbc477e4ed6c89de8a8625c9269fde44 (patch) | |
tree | 2b3af916503e262c12cfc5a5ce9b9f863d62a1a8 | |
parent | add abs_real_mask (diff) |
fix reading of negative integers with file_read_int on 64 bit windows
-rw-r--r-- | wfileIO3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -772,7 +772,7 @@ CLEAN_BOOL file_read_int (struct file *f,CLEAN_INT *i_p) result=0; f->file_error=-1; } else { - unsigned int i; + size_t i; i=c-'0'; |