summaryrefslogtreecommitdiff
path: root/lib9/strtoull.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib9/strtoull.c')
-rw-r--r--lib9/strtoull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib9/strtoull.c b/lib9/strtoull.c
index 3f08ba61..040f28e7 100644
--- a/lib9/strtoull.c
+++ b/lib9/strtoull.c
@@ -1,6 +1,6 @@
#include "lib9.h"
-#define UVLONG_MAX (1LL<<63)
+#define UVLONG_MAX ((uvlong)1<<63)
uvlong
strtoull(char *nptr, char **endptr, int base)