From 2d389c1c39e2f652522f333cc7ecc31dd23a9ae0 Mon Sep 17 00:00:00 2001 From: glyn Date: Tue, 27 Jan 2015 20:21:34 +0000 Subject: [PATCH] Fix funny indentaion --- jsonb_opx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2