]> git.8kb.co.uk Git - postgresql/pg_jsonb_opx/commitdiff
Fix funny indentaion
authorglyn <glyn@8kb.co.uk>
Tue, 27 Jan 2015 20:21:34 +0000 (20:21 +0000)
committerglyn <glyn@8kb.co.uk>
Tue, 27 Jan 2015 20:21:34 +0000 (20:21 +0000)
jsonb_opx.c

index 4442cb42df6895fcfc22ff3d81345eb21f9ce8c0..d2c498c49f77b1c3e3a8632ee06d3cec49a914d8 100755 (executable)
@@ -37,11 +37,11 @@ Datum
 jsonb_delete_text(PG_FUNCTION_ARGS)
 {
     /* general loops */
-       int i;
+    int i;
 
     /* pointers to incoming jsonb and text[] data */
     Jsonb *input_jsonb = PG_GETARG_JSONB(0);
-       ArrayType *input_array = PG_GETARG_ARRAYTYPE_P(1);
+    ArrayType *input_array = PG_GETARG_ARRAYTYPE_P(1);
     
     /* pointers to return jsonb_value data and state to be converted to jsonb on return */
     JsonbParseState *state = NULL;