From ad1c71705a3f968b2c3cbe9c205cc7fe10c012c8 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Tue, 21 Apr 2015 07:40:36 +0200 Subject: [PATCH] Fix typo in error message --- pgsql/pc_inout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgsql/pc_inout.c b/pgsql/pc_inout.c index 6727211..eeb5ae0 100644 --- a/pgsql/pc_inout.c +++ b/pgsql/pc_inout.c @@ -221,7 +221,7 @@ Datum pcpoint_from_double_array(PG_FUNCTION_ARGS) nelems = ARR_DIMS(arrptr)[0]; if ( nelems != schema->ndims || ARR_LBOUND(arrptr)[0] > 1 ) - elog(ERROR, "array dimenensions do not match schema dimensions of pcid = %d", pcid); + elog(ERROR, "array dimensions do not match schema dimensions of pcid = %d", pcid); vals = (float8*) ARR_DATA_PTR(arrptr); pt = pc_point_from_double_array(schema, vals, nelems);