diff --git a/jshon.c b/jshon.c index ffefee6..96445a0 100644 --- a/jshon.c +++ b/jshon.c @@ -92,7 +92,6 @@ static json_t *compat_json_loads(const char *input, json_error_t *error) #include #ifdef _WIN32 -typedef unsigned int uint; // Avoid no-declared error for mingw/gcc with -std=c99. extern int fileno(FILE*); extern char* strdup(const char*); @@ -212,7 +211,7 @@ typedef struct { void* itr; // object iterator json_t** stk; // stack reentry - uint lin; // array iterator + unsigned int lin; // array iterator int opt; // optind reentry int fin; // finished iteration } mapping;