From: Tom Lane Date: Fri, 20 Feb 2015 05:47:28 +0000 (-0500) Subject: Remove unused variable. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9aa53bbd15ef65a4be6c09709fbe985898ae9ad7;p=users%2Fheikki%2Fpostgres.git Remove unused variable. Per buildfarm. --- diff --git a/src/backend/utils/adt/array_userfuncs.c b/src/backend/utils/adt/array_userfuncs.c index 5c20d0c9d0..7f7c256986 100644 --- a/src/backend/utils/adt/array_userfuncs.c +++ b/src/backend/utils/adt/array_userfuncs.c @@ -138,8 +138,7 @@ array_prepend(PG_FUNCTION_ARGS) Datum newelem; bool isNull; ArrayType *result; - int *dimv, - *lb; + int *lb; int indx; ArrayMetaState *my_extra; @@ -154,7 +153,6 @@ array_prepend(PG_FUNCTION_ARGS) { /* prepend newelem */ lb = ARR_LBOUND(v); - dimv = ARR_DIMS(v); indx = lb[0] - 1; /* overflow? */