diff options
author | Anatol Belski <ab@php.net> | 2014-08-26 10:04:51 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-26 10:06:43 +0200 |
commit | 3b75f96569e268ffab24f35e892345daaae7f086 (patch) | |
tree | 7c0049934d611cff311d9f8d1ed7e95bb78279bf | |
parent | 0686b4448d7382fcda4e03b8561eaf1b6d990644 (diff) | |
download | php-git-3b75f96569e268ffab24f35e892345daaae7f086.tar.gz |
fix typo
-rw-r--r-- | ext/date/lib/timelib_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/lib/timelib_structs.h b/ext/date/lib/timelib_structs.h index 15698c6f80..e5780f6cca 100644 --- a/ext/date/lib/timelib_structs.h +++ b/ext/date/lib/timelib_structs.h @@ -47,7 +47,7 @@ typedef uint64_t timelib_ulong; # define TIMELIB_ULONG_FMT "%" PRIu64 #else typedef int32_t timelib_long; -typedef uint32_t limelib_ulong; +typedef uint32_t timelib_ulong; # define TIMELIB_LONG_MAX INT32_MAX # define TIMELIB_LONG_MIN INT32_MIN # define TIMELIB_ULONG_MAX UINT32_MAX |