Merge branch 'parse-signedness-warn' of https://github.com/floatious/fio

* 'parse-signedness-warn' of https://github.com/floatious/fio:
  parse: fix parse_is_percent() warning
diff --git a/parse.h b/parse.h
index 4cf08fd..d68484e 100644
--- a/parse.h
+++ b/parse.h
@@ -131,7 +131,7 @@
 
 static inline int parse_is_percent(unsigned long long val)
 {
-	return val >= -101;
+	return val >= -101ULL;
 }
 
 #define ZONE_BASE_VAL ((-1ULL >> 1) + 1)