diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-01-25 13:23:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-01-25 13:23:08 -0500 |
commit | ad382049ed9b3408992a7a7ee4dfe2ecdb1d5897 (patch) | |
tree | 344b6d81db1419341bd2922dd0d476b952dc5c64 /src | |
parent | 373d9aff7af41c07bb51093df4ceb51a13404a44 (diff) | |
download | tor-ad382049ed9b3408992a7a7ee4dfe2ecdb1d5897.tar.gz tor-ad382049ed9b3408992a7a7ee4dfe2ecdb1d5897.zip |
Fix a signed/unsigned comparison warning
Diffstat (limited to 'src')
-rw-r--r-- | src/common/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index 16b222904a..0dbede6bed 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -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); |