Skip to content

Commit 9aa53bb

Browse files
committed
Remove unused variable.
Per buildfarm.
1 parent 692bd09 commit 9aa53bb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/backend/utils/adt/array_userfuncs.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ array_prepend(PG_FUNCTION_ARGS)
138138
Datum newelem;
139139
bool isNull;
140140
ArrayType *result;
141-
int *dimv,
142-
*lb;
141+
int *lb;
143142
int indx;
144143
ArrayMetaState *my_extra;
145144

@@ -154,7 +153,6 @@ array_prepend(PG_FUNCTION_ARGS)
154153
{
155154
/* prepend newelem */
156155
lb = ARR_LBOUND(v);
157-
dimv = ARR_DIMS(v);
158156
indx = lb[0] - 1;
159157

160158
/* overflow? */

0 commit comments

Comments
 (0)