diff options
| author | Anatol Belski <ab@php.net> | 2014-09-17 09:03:47 +0200 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-09-17 09:03:47 +0200 |
| commit | 19f8217113ca5582130a4bc396c6d44278dea96f (patch) | |
| tree | be1caf9400fdb1f8361a950a944c3e8a730ca7c5 | |
| parent | d41ac22a5418219581bef80ad57a63d8163265bb (diff) | |
| download | php-git-19f8217113ca5582130a4bc396c6d44278dea96f.tar.gz | |
reduce struct size by 8 byte on 64 bit
| -rw-r--r-- | ext/json/utf8_decode.h | 2 |
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; |
