diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | include/version.h | 2 | ||||
| -rw-r--r-- | lib9/strtoull.c | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +20100504 + change lib9/strtoull.c for MS 20100503 updated libmach/8db.c to avoid [] initialisers 20100501 diff --git a/include/version.h b/include/version.h index 69e18443..cd5c5976 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20100503)" +#define VERSION "Fourth Edition (20100504)" 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) |
