aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-03-14 16:43:40 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-03-14 16:43:40 -0400
commit8df5a1c868cc28f89ac6221cff8e2b5c952d0eb6 (patch)
tree042d587e6b2983f20de6d5b971f8dbbc214b34b8
parentf66e8bf875f691db4c5d0173fc39b5a9c3ec969c (diff)
downloadpostgresql-8df5a1c868cc28f89ac6221cff8e2b5c952d0eb6.tar.gz
postgresql-8df5a1c868cc28f89ac6221cff8e2b5c952d0eb6.zip
Fix compiler warning
-rw-r--r--src/pl/plpgsql/src/pl_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c
index 827e44019d8..68da7cf669e 100644
--- a/src/pl/plpgsql/src/pl_exec.c
+++ b/src/pl/plpgsql/src/pl_exec.c
@@ -2086,7 +2086,7 @@ exec_stmt_call(PLpgSQL_execstate *estate, PLpgSQL_stmt_call *stmt)
FuncExpr *funcexpr;
int i;
HeapTuple tuple;
- int numargs;
+ int numargs PG_USED_FOR_ASSERTS_ONLY;
Oid *argtypes;
char **argnames;
char *argmodes;