Avoid set-but-not-used warning/error in a test

Closes GH-20.
This commit is contained in:
Jim Meyering 2011-04-05 14:04:16 +02:00 committed by Petri Lehtinen
parent 1c0a3b2a55
commit c96763215d

View File

@ -15,6 +15,8 @@ int main()
json_error_t error;
json = json_load_file("/path/to/nonexistent/file.json", 0, &error);
if(json)
fail("json_load_file returned non-NULL for a nonexistent file");
if(error.line != -1)
fail("json_load_file returned an invalid line number");
if(strcmp(error.text, "unable to open /path/to/nonexistent/file.json: No such file or directory") != 0)