summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-11-26 15:18:42 +0100
committerAnatol Belski <ab@php.net>2016-11-26 17:29:01 +0100
commitb204b3abd19f86bd9217866189cdebcc6abc0d95 (patch)
tree324e3c86634583ef7d58bc0f3e19dfbdeb85773c /Zend/zend_alloc.h
parent1b7e014d1ce21b9eb6021111c1005d047b5b9a1b (diff)
downloadphp-git-b204b3abd19f86bd9217866189cdebcc6abc0d95.tar.gz
further normalizations, uint vs uint32_t
fix merge mistake yet one more replacement run
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r--Zend/zend_alloc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h
index 2168f965e8..3dbf968c3e 100644
--- a/Zend/zend_alloc.h
+++ b/Zend/zend_alloc.h
@@ -50,8 +50,8 @@ typedef struct _zend_leak_info {
size_t size;
const char *filename;
const char *orig_filename;
- uint lineno;
- uint orig_lineno;
+ uint32_t lineno;
+ uint32_t orig_lineno;
} zend_leak_info;
#if ZEND_DEBUG
@@ -59,8 +59,8 @@ typedef struct _zend_mm_debug_info {
size_t size;
const char *filename;
const char *orig_filename;
- uint lineno;
- uint orig_lineno;
+ uint32_t lineno;
+ uint32_t orig_lineno;
} zend_mm_debug_info;
# define ZEND_MM_OVERHEAD ZEND_MM_ALIGNED_SIZE(sizeof(zend_mm_debug_info))