File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ enum json_states {
172
172
173
173
enum json_value_types
174
174
{
175
- JSON_VALUE_UNINITALIZED = 0 ,
175
+ JSON_VALUE_UNINITIALIZED = 0 ,
176
176
JSON_VALUE_OBJECT = 1 ,
177
177
JSON_VALUE_ARRAY = 2 ,
178
178
JSON_VALUE_STRING = 3 ,
Original file line number Diff line number Diff line change @@ -986,7 +986,7 @@ my_decimal *Item_func_json_extract::val_decimal(my_decimal *to)
986
986
case JSON_VALUE_ARRAY:
987
987
case JSON_VALUE_FALSE:
988
988
case JSON_VALUE_NULL:
989
- case JSON_VALUE_UNINITALIZED :
989
+ case JSON_VALUE_UNINITIALIZED :
990
990
break ;
991
991
};
992
992
}
Original file line number Diff line number Diff line change @@ -948,7 +948,7 @@ int json_read_value(json_engine_t *j)
948
948
{
949
949
int t_next , c_len , res ;
950
950
951
- j -> value_type = JSON_VALUE_UNINITALIZED ;
951
+ j -> value_type = JSON_VALUE_UNINITIALIZED ;
952
952
if (j -> state == JST_KEY )
953
953
{
954
954
while (json_read_keyname_chr (j ) == 0 ) {}
You can’t perform that action at this time.
0 commit comments