Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue #17 #22

Merged
merged 1 commit into from Apr 11, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion json.c
Expand Up @@ -198,7 +198,9 @@ json_value * json_parse_ex (json_settings * settings, const json_char * json, ch
json_value * top, * root, * alloc = 0;
json_state state;
long flags;
long num_digits, num_fraction, num_e;

short num_digits, num_e;
json_int_t num_fraction;

error[0] = '\0';

Expand Down