Fixed a debugging function output bug

git-svn-id: http://svn.osgeo.org/postgis/trunk@1025 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Sandro Santilli 2004-10-17 12:43:32 +00:00
parent a9cbeab0c4
commit 234da47f4f

View file

@ -125,7 +125,7 @@ lwline_serialize_buf(LWLINE *line, char *buf, size_t *retsize)
if ( ptsize != sizeof(double)*TYPE_NDIMS(line->type) )
{
lwerror("lwline_serialize_buf: line has %d dims, its pointarray has %d dims");
lwerror("lwline_serialize_buf: line has %d dims, its pointarray has %d dims", TYPE_NDIMS(line->type), TYPE_NDIMS(line->points->dims));
}
#ifdef DEBUG_CALLS