[open-ils-commits] r12809 - trunk/Open-ILS/src/c-apps (scottmk)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Apr 7 02:33:06 EDT 2009


Author: scottmk
Date: 2009-04-07 02:33:03 -0400 (Tue, 07 Apr 2009)
New Revision: 12809

Modified:
   trunk/Open-ILS/src/c-apps/test_json_query.c
Log:
Use the new JSON parser


Modified: trunk/Open-ILS/src/c-apps/test_json_query.c
===================================================================
--- trunk/Open-ILS/src/c-apps/test_json_query.c	2009-04-07 05:24:26 UTC (rev 12808)
+++ trunk/Open-ILS/src/c-apps/test_json_query.c	2009-04-07 06:33:03 UTC (rev 12809)
@@ -187,7 +187,7 @@
 
 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;



More information about the open-ils-commits mailing list