1
0
mirror of https://github.com/kgabis/parson.git synced 2025-01-28 06:32:55 +08:00

Fixed type mismatch in array indexing variables, updated readme file.

Also removed trailing whitespace.
This commit is contained in:
Krzysztof Gabis 2012-12-02 18:33:00 +01:00
parent 962d9f13ba
commit c24b1a1ad0
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ void print_commits_info(const char *username, const char *repo) {
JSON_Value *root_value;
JSON_Array *commits;
JSON_Object *commit;
int i;
size_t i;
char curl_command[512];
char cleanup_command[256];

View File

@ -41,7 +41,7 @@ void print_commits_info(const char *username, const char *repo);
static int tests_passed;
static int tests_failed;
int main(int argc, const char * argv[]) {
int main() {
/* Example function from readme file: */
/* print_commits_info("torvalds", "linux"); */
test_suite_1();
@ -68,7 +68,7 @@ void test_suite_2(void) {
JSON_Value *root_value;
JSON_Object *object;
JSON_Array *array;
int i;
size_t i;
const char *filename = "tests/test_2.txt";
printf("Testing %s:\n", filename);
root_value = json_parse_file(filename);
@ -120,7 +120,7 @@ void test_suite_2(void) {
} else {
tests_failed++;
}
TEST(json_object_dotget_boolean(object, "nested true"));
TEST(json_object_dotget_boolean(object, "nested true"));
json_value_free(root_value);
}
@ -173,7 +173,7 @@ void print_commits_info(const char *username, const char *repo) {
JSON_Value *root_value;
JSON_Array *commits;
JSON_Object *commit;
int i;
size_t i;
char curl_command[512];
char cleanup_command[256];