From 19f8217113ca5582130a4bc396c6d44278dea96f Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Wed, 17 Sep 2014 09:03:47 +0200 Subject: [PATCH] reduce struct size by 8 byte on 64 bit --- ext/json/utf8_decode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1