Fix a signed/unsigned comparison warning

This commit is contained in:
Nick Mathewson 2017-01-25 13:23:08 -05:00
parent 373d9aff7a
commit ad382049ed

View File

@ -258,7 +258,7 @@ tor_mmap_file(const char *filename)
page_size = getpagesize();
size += (size%page_size) ? page_size-(size%page_size) : 0;
if (st.st_size > SSIZE_T_CEILING || size < st.st_size) {
if (st.st_size > SSIZE_T_CEILING || (off_t)size < st.st_size) {
log_warn(LD_FS, "File \"%s\" is too large. Ignoring.",filename);
errno = EFBIG;
close(fd);