Fix indentation

No functional changes.
This commit is contained in:
Petri Lehtinen
2009-10-16 21:20:38 +03:00
parent b67e130fda
commit 86dc1d629b
7 changed files with 19 additions and 18 deletions

View File

@@ -94,7 +94,7 @@ static void test_misc(void)
value = json_array_get(array, 15);
if(!json_is_integer(value) || json_integer_value(value) != 123)
fail("json_array_set_new works incorrectly");
fail("json_array_set_new works incorrectly");
if(!json_array_set_new(array, 15, NULL))
fail("able to set_new NULL value");
@@ -104,7 +104,7 @@ static void test_misc(void)
value = json_array_get(array, json_array_size(array) - 1);
if(!json_is_integer(value) || json_integer_value(value) != 321)
fail("json_array_append_new works incorrectly");
fail("json_array_append_new works incorrectly");
if(!json_array_append_new(array, NULL))
fail("able to append_new NULL value");