浏览代码

Fix a signed/unsigned comparison warning

Nick Mathewson 7 年之前
父节点
当前提交
ad382049ed
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/common/compat.c

+ 1 - 1
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);