diff options
author | Anatol Belski <ab@php.net> | 2016-11-26 15:18:42 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-11-26 17:29:01 +0100 |
commit | b204b3abd19f86bd9217866189cdebcc6abc0d95 (patch) | |
tree | 324e3c86634583ef7d58bc0f3e19dfbdeb85773c /Zend/zend_exceptions.c | |
parent | 1b7e014d1ce21b9eb6021111c1005d047b5b9a1b (diff) | |
download | php-git-b204b3abd19f86bd9217866189cdebcc6abc0d95.tar.gz |
further normalizations, uint vs uint32_t
fix merge mistake
yet one more replacement run
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 8f41e1ce71..bf884c1f94 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -961,7 +961,7 @@ ZEND_API ZEND_COLD zend_object *zend_throw_error_exception(zend_class_entry *exc } /* }}} */ -static void zend_error_va(int type, const char *file, uint lineno, const char *format, ...) /* {{{ */ +static void zend_error_va(int type, const char *file, uint32_t lineno, const char *format, ...) /* {{{ */ { va_list args; @@ -971,7 +971,7 @@ static void zend_error_va(int type, const char *file, uint lineno, const char *f } /* }}} */ -static void zend_error_helper(int type, const char *filename, const uint lineno, const char *format, ...) /* {{{ */ +static void zend_error_helper(int type, const char *filename, const uint32_t lineno, const char *format, ...) /* {{{ */ { va_list va; |