Skip to content

Commit e7719f9

Browse files
committed
fix printf fmt for zend_uint_t
1 parent d55c85d commit e7719f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_int.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ typedef long zend_off_t;
103103
# define ZEND_STRTOI(s0, s1, base) strtoll((s0), (s1), (base))
104104
# define ZEND_STRTOUI(s0, s1, base) strtoull((s0), (s1), (base))
105105
# define ZEND_INT_FMT "%" PRId64
106-
# define ZEND_UINT_FMT "%lu"
106+
# define ZEND_UINT_FMT "%" PRIu64
107107
# define ZEND_INT_FMT_SPEC PRId64
108-
# define ZEND_UINT_FMT_SPEC "lu"
108+
# define ZEND_UINT_FMT_SPEC PRIu64
109109
# define ZEND_STRTOI_PTR strtoll
110110
# define ZEND_STRTOUI_PTR strtoull
111111
# define ZEND_ABS llabs

0 commit comments

Comments
 (0)