From: scottmk Date: Tue, 7 Apr 2009 06:33:03 +0000 (+0000) Subject: Use the new JSON parser X-Git-Tag: sprint4-merge-nov22~10310 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ff7154614b59c73c5f6f338ca2cdc7e87c7455e2;p=working%2FEvergreen.git Use the new JSON parser git-svn-id: svn://svn.open-ils.org/ILS/trunk@12809 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/c-apps/test_json_query.c b/Open-ILS/src/c-apps/test_json_query.c index c0e73dc538..d90cfc62f9 100644 --- a/Open-ILS/src/c-apps/test_json_query.c +++ b/Open-ILS/src/c-apps/test_json_query.c @@ -187,7 +187,7 @@ int main( int argc, char* argv[] ) { static int test_json_query( const char* json_query ) { - jsonObject* hash = jsonParseString( json_query ); + jsonObject* hash = jsonParse( json_query ); if( !hash ) { fprintf( stderr, "Invalid JSON\n" ); return -1;