Make json_error_t opaque
[jansson.git] / test / bin / json_process.c
index 77407e5..671127a 100644 (file)
@@ -28,10 +28,10 @@ static int getenv_int(const char *name)
 int main(int argc, char *argv[])
 {
     int indent = 0;
-    unsigned int flags = 0;
+    size_t flags = 0;
 
     json_t *json;
-    json_error_t error;
+    json_error_t *error;
 
     if(argc != 1) {
         fprintf(stderr, "usage: %s\n", argv[0]);
@@ -59,9 +59,12 @@ int main(int argc, char *argv[])
     if(getenv_int("JSON_SORT_KEYS"))
         flags |= JSON_SORT_KEYS;
 
-    json = json_loadf(stdin, &error);
+    json = json_loadf(stdin, 0, &error);
     if(!json) {
-        fprintf(stderr, "%d\n%s\n", error.line, error.text);
+        fprintf(stderr, "%d\n%s\n",
+                json_error_line(error),
+                json_error_msg(error));
+        free(error);
         return 1;
     }