]> granicus.if.org Git - json-c/commitdiff
For the prototype for json_tokener_error_desc().
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 1 Apr 2012 03:49:58 +0000 (22:49 -0500)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 1 Apr 2012 03:49:58 +0000 (22:49 -0500)
json_tokener.h

index be7f87df39a22063a63f63cbf993b0b386950644..d104c75f3de72ec24d2108934f7769dab9fafe40 100644 (file)
@@ -88,13 +88,13 @@ struct json_tokener
  *
  * @return a generic error message is returned if an invalid error value is provided.
  */
-const char *json_tokeners_errors(enum json_tokener_error jerr);
+const char *json_tokener_error_desc(enum json_tokener_error jerr);
 
 /** 
  * @b XXX do not use json_tokener_errors directly.  
  * After v0.10 this will be removed.
  *
- * See json_tokeners_errors() instead.
+ * See json_tokener_error_desc() instead.
  */
 extern const char* json_tokener_errors[];
 
@@ -162,7 +162,7 @@ do {
 } while ((jerr = json_tokener_get_error(tok)) == json_tokener_continue);
 if (jerr != json_tokener_success)
 {
-       fprintf(stderr, "Error: %s\n", json_tokener_errors[jerr]);
+       fprintf(stderr, "Error: %s\n", json_tokener_error_desc(jerr));
        // Handle errors, as appropriate for your application.
 }
 if (tok->char_offset < stringlen) // XXX shouldn't access internal fields