]> granicus.if.org Git - postgis/commitdiff
Fix typo in error message
authorSandro Santilli <strk@keybit.net>
Thu, 10 Apr 2014 14:22:59 +0000 (14:22 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 10 Apr 2014 14:22:59 +0000 (14:22 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@12454 b70326c6-7e19-0410-871a-916f4a2858ee

raster/rt_core/rt_serialize.c

index aeae287afcf69bc897c7728324d5a9bd936f7f23..49fb01cac0f4b567cd8b5c8df5b6bf9b9775facf 100644 (file)
@@ -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;