summaryrefslogtreecommitdiff
path: root/ext/json
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-17 09:03:47 +0200
committerAnatol Belski <ab@php.net>2014-09-17 09:03:47 +0200
commit19f8217113ca5582130a4bc396c6d44278dea96f (patch)
treebe1caf9400fdb1f8361a950a944c3e8a730ca7c5 /ext/json
parentd41ac22a5418219581bef80ad57a63d8163265bb (diff)
downloadphp-git-19f8217113ca5582130a4bc396c6d44278dea96f.tar.gz
reduce struct size by 8 byte on 64 bit
Diffstat (limited to 'ext/json')
-rw-r--r--ext/json/utf8_decode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/json/utf8_decode.h b/ext/json/utf8_decode.h
index cc0fc79f6c..0908edd2d4 100644
--- a/ext/json/utf8_decode.h
+++ b/ext/json/utf8_decode.h
@@ -5,8 +5,8 @@
typedef struct json_utf8_decode
{
- int the_index;
char *the_input;
+ int the_index;
int the_length;
int the_char;
int the_byte;