Pedantic change for const-correctness: replace two calls to
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 14 Aug 2010 21:14:55 +0000 (21:14 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 14 Aug 2010 21:14:55 +0000 (21:14 +0000)
jsonObjectGetKey() with calls to jsonObjectGetKeyConst().

M    src/libopensrf/osrf_parse_json.c

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2003 9efc2488-bf62-4759-914b-345cdb29e865

src/libopensrf/osrf_parse_json.c

index aef8a88..2ea7f52 100644 (file)
@@ -410,7 +410,7 @@ static jsonObject* get_hash( Parser* parser ) {
                }
                char* key_copy = strdup( key );
 
-               if( jsonObjectGetKey( hash, key_copy ) ) {
+               if( jsonObjectGetKeyConst( hash, key_copy ) ) {
                        report_error( parser, '"', "Duplicate key in JSON object" );
                        jsonObjectFree( hash );
                        return NULL;
@@ -495,7 +495,7 @@ static jsonObject* get_decoded_hash( Parser* parser ) {
                }
                char* key_copy = strdup( key );
 
-               if( jsonObjectGetKey( hash, key_copy ) ) {
+               if( jsonObjectGetKeyConst( hash, key_copy ) ) {
                        report_error( parser, '"', "Duplicate key in JSON object" );
                        jsonObjectFree( hash );
                        return NULL;