From: Sandro Santilli Date: Thu, 10 Apr 2014 14:22:59 +0000 (+0000) Subject: Fix typo in error message X-Git-Tag: 2.2.0rc1~1139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e6e62b1424654e6eb7354e1dc84262bf9939acd2;p=postgis Fix typo in error message git-svn-id: http://svn.osgeo.org/postgis/trunk@12454 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/raster/rt_core/rt_serialize.c b/raster/rt_core/rt_serialize.c index aeae287af..49fb01cac 100644 --- a/raster/rt_core/rt_serialize.c +++ b/raster/rt_core/rt_serialize.c @@ -871,7 +871,7 @@ rt_raster_deserialize(void* serialized, int header_only) { pathlen = strlen((char*) ptr); band->data.offline.path = rtalloc(sizeof(char) * (pathlen + 1)); if (band->data.offline.path == NULL) { - rterror("rt_raster_deserialize: Could not allocate momory for offline band path"); + rterror("rt_raster_deserialize: Could not allocate memory for offline band path"); for (j = 0; j <= i; j++) rt_band_destroy(rast->bands[j]); rt_raster_destroy(rast); return NULL;