From fdf046a572552baf7c28cae385d2a2fb0a1e632d Mon Sep 17 00:00:00 2001 From: Bborie Park Date: Wed, 8 Feb 2012 16:44:00 +0000 Subject: [PATCH] Minor debug message tweak git-svn-id: http://svn.osgeo.org/postgis/trunk@9099 b70326c6-7e19-0410-871a-916f4a2858ee --- raster/rt_core/rt_api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raster/rt_core/rt_api.c b/raster/rt_core/rt_api.c index 36a7f11af..c07a95e12 100644 --- a/raster/rt_core/rt_api.c +++ b/raster/rt_core/rt_api.c @@ -5652,8 +5652,8 @@ rt_raster_from_wkb(const uint8_t* wkb, uint32_t wkbsize) { /* Check that wkbsize is >= sizeof(rt_raster_serialized) */ if (wkbsize < RT_WKB_HDR_SZ) { - rterror("rt_raster_from_wkb: wkb size < min size (%d)", - RT_WKB_HDR_SZ); + rterror("rt_raster_from_wkb: wkb size (%d) < min size (%d)", + wkbsize, RT_WKB_HDR_SZ); return 0; } wkbend = wkb + wkbsize; -- 2.40.0