Prevent compiler warning about unused numtype var
authorDan Scott <dscott@laurentian.ca>
Fri, 5 Apr 2013 05:53:55 +0000 (01:53 -0400)
committerMike Rylander <mrylander@gmail.com>
Wed, 17 Apr 2013 19:55:46 +0000 (15:55 -0400)
There was a dangling variable left around that was making noise in the
compiler. Credit to Jeff Godin for the heads-up.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/c-apps/oils_sql.c

index ea614e1..eb3f48b 100644 (file)
@@ -2468,9 +2468,8 @@ int doRetrieve( osrfMethodContext* ctx ) {
 */
 static char* jsonNumberToDBString( osrfHash* field, const jsonObject* value ) {
        growing_buffer* val_buf = buffer_init( 32 );
-       const char* numtype = get_datatype( field );
 
-    // If the value is a number and the DB field is numeric, no quotes needed
+       // If the value is a number and the DB field is numeric, no quotes needed
        if( value->type == JSON_NUMBER && !strcmp( get_primitive( field ), "number") ) {
                buffer_fadd( val_buf, jsonObjectGetString( value ) );
        } else {