From 528b9fdcf2d9a9158e026b36a3a4cc04514b8053 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 12 Jun 2016 03:39:36 -0700 Subject: [PATCH] Fix env_universal_common.cpp filesize comparisons. * if (result == ULLONG_MAX) is always false, likely a typo as result is unsigned long, and the comment says ULONG_MAX. * use off_t instead of size_t for file size where it can mismatch st_size's type in stat.h --- src/env_universal_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env_universal_common.cpp b/src/env_universal_common.cpp index 6dea9eeb5..7e6379229 100644 --- a/src/env_universal_common.cpp +++ b/src/env_universal_common.cpp @@ -1551,7 +1551,7 @@ class universal_notifier_named_pipe_t : public universal_notifier_t // Now return the smaller of the two values // If we get ULONG_MAX, it means there's no more need to poll; in that case return 0 unsigned long result = mini(readback_delay, polling_delay); - if (result == ULLONG_MAX) + if (result == ULONG_MAX) { result = 0; }