Commit 66e4e6da by Edward Thomson

Merge pull request #3515 from jacquesg/unsigned-signed

Fix <0 unsigned comparison (stat.st_size should be an off_t)
parents c4f60543 e78e8fae
...@@ -28,7 +28,7 @@ struct p_stat { ...@@ -28,7 +28,7 @@ struct p_stat {
short st_uid; short st_uid;
short st_gid; short st_gid;
_dev_t st_rdev; _dev_t st_rdev;
uint64_t st_size; __int64 st_size;
struct timespec st_atim; struct timespec st_atim;
struct timespec st_mtim; struct timespec st_mtim;
struct timespec st_ctim; struct timespec st_ctim;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment