]> granicus.if.org Git - json-c/commitdiff
Remove unnecessary comment from json_util.c
authorEric Haszlakiewicz <erh+git@nimenees.com>
Mon, 9 Jul 2012 01:32:12 +0000 (20:32 -0500)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Mon, 9 Jul 2012 01:32:12 +0000 (20:32 -0500)
json_util.c

index 03fb24beda6a3a0fdd56ee01744e8d14c09b1680..bab772bc3d1f72b7e9d20e0b877a752e08d01565 100644 (file)
@@ -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);