From: glyn Date: Tue, 27 Jan 2015 20:21:34 +0000 (+0000) Subject: Fix funny indentaion X-Git-Url: https://git.8kb.co.uk/?p=postgresql%2Fpg_jsonb_opx;a=commitdiff_plain;h=2d389c1c39e2f652522f333cc7ecc31dd23a9ae0 Fix funny indentaion --- diff --git a/jsonb_opx.c b/jsonb_opx.c index 4442cb4..d2c498c 100755 --- a/jsonb_opx.c +++ b/jsonb_opx.c @@ -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;