Fixed compiler warning

SVN revision: 1670
This commit is contained in:
2006-03-06 08:31:19 +00:00
parent 456675fc9d
commit 3b45b11b74
+1 -1
View File
@@ -571,7 +571,7 @@ int my_read(int fh, void *buffer, unsigned int bytes)
n += i;
} while (n < bytes);
} while (n < (int)bytes);
#else
return read(fh, buffer, bytes);
#endif