diff options
| author | Anatol Belski <ab@php.net> | 2014-09-13 12:52:11 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-09-13 12:52:11 +0200 |
| commit | f91a782973ce8e549166eb919128209f39d1eecd (patch) | |
| tree | 9996225b4d5042a40e43873ab63cb1b3449cf05f | |
| parent | 98aeef6facee1c754758b641c6f0fbe4aced4908 (diff) | |
| download | php-git-f91a782973ce8e549166eb919128209f39d1eecd.tar.gz | |
reduce the struct size by 8 byte on 64 bit
this one looks like debug only, but still useful
| -rw-r--r-- | Zend/zend_alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index d6d3415dd5..d9853765c3 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -45,8 +45,8 @@ typedef struct _zend_leak_info { void *addr; size_t size; const char *filename; - uint lineno; const char *orig_filename; + uint lineno; uint orig_lineno; } zend_leak_info; |
