mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Fixed compiler warning
SVN revision: 1670
This commit is contained in:
parent
456675fc9d
commit
3b45b11b74
@ -571,7 +571,7 @@ int my_read(int fh, void *buffer, unsigned int bytes)
|
|||||||
|
|
||||||
n += i;
|
n += i;
|
||||||
|
|
||||||
} while (n < bytes);
|
} while (n < (int)bytes);
|
||||||
#else
|
#else
|
||||||
return read(fh, buffer, bytes);
|
return read(fh, buffer, bytes);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user