From: Eric Haszlakiewicz Date: Mon, 9 Jul 2012 01:32:12 +0000 (-0500) Subject: Remove unnecessary comment from json_util.c X-Git-Tag: json-c-0.11-20130402~68 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=eead1a7dc42d9f6c781ce5eb5eed1ec0e053cc07;p=thirdparty%2Fjson-c.git Remove unnecessary comment from json_util.c --- diff --git a/json_util.c b/json_util.c index 03fb24be..bab772bc 100644 --- a/json_util.c +++ b/json_util.c @@ -71,7 +71,7 @@ struct json_object* json_object_from_file(const char *filename) if((fd = open(filename, O_RDONLY)) < 0) { MC_ERROR("json_object_from_file: error reading file %s: %s\n", filename, strerror(errno)); - return NULL; // XAX this is an API change! + return NULL; } if(!(pb = printbuf_new())) { close(fd);