Unify unsigned integer usage in the API
Replace all occurences of unsigned int and unsigned long with size_t. This is a backwards incompatible change, as the signature of many API functions changes.
This commit is contained in:
@@ -28,7 +28,7 @@ static int getenv_int(const char *name)
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
int indent = 0;
|
||||
unsigned int flags = 0;
|
||||
size_t flags = 0;
|
||||
|
||||
json_t *json;
|
||||
json_error_t error;
|
||||
|
||||
Reference in New Issue
Block a user