Corrected gcc warning

This commit is contained in:
Paolo Cignoni 2007-05-24 06:56:54 +00:00
parent 3170af4d5e
commit 3dcf88ee2a
1 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.14 2006/06/10 12:49:05 mariolatronico
file length is now computed using fseek and ftell
Revision 1.13 2006/06/06 14:35:32 zifnab1974 Revision 1.13 2006/06/06 14:35:32 zifnab1974
Changes for compilation on linux AMD64. Some remarks: Linux filenames are case-sensitive. _fileno and _filelength do not exist on linux Changes for compilation on linux AMD64. Some remarks: Linux filenames are case-sensitive. _fileno and _filelength do not exist on linux
@ -147,7 +150,7 @@ static int Open( OpenMeshType &m, const char * filename, CallBackPos *cb=0)
if(file_size == expected_file_size) binary = true; if(file_size == expected_file_size) binary = true;
unsigned char tmpbuf[128]; unsigned char tmpbuf[128];
fread(tmpbuf,sizeof(tmpbuf),1,fp); fread(tmpbuf,sizeof(tmpbuf),1,fp);
for(int i = 0; i < sizeof(tmpbuf); i++) for(unsigned int i = 0; i < sizeof(tmpbuf); i++)
{ {
if(tmpbuf[i] > 127) if(tmpbuf[i] > 127)
{ {