[mapserver-commits] r12178 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 07:04:41 EDT 2011


Author: tbonfort
Date: 2011-08-26 04:04:40 -0700 (Fri, 26 Aug 2011)
New Revision: 12178

Modified:
   trunk/mapserver/mapcache/src/geocache_seed.c
Log:
use #if instead of #ifdef for mutex type
thomas.bonfort | 2010-12-17 10:19:12 +0100 (Fri, 17 Dec 2010)

Modified: trunk/mapserver/mapcache/src/geocache_seed.c
===================================================================
--- trunk/mapserver/mapcache/src/geocache_seed.c	2011-08-26 11:04:36 UTC (rev 12177)
+++ trunk/mapserver/mapcache/src/geocache_seed.c	2011-08-26 11:04:40 UTC (rev 12178)
@@ -243,7 +243,7 @@
                 break;
             case 'z':
                 if ( GEOCACHE_SUCCESS != geocache_util_extract_int_list(gctx, (char*)optarg, ',', &zooms, &n) ||
-                        n != 2 || zooms[0] >= zooms[1]) {
+                        n != 2 || zooms[0] > zooms[1]) {
                     return usage(argv[0], "failed to parse zooms, expecting comma separated 2 ints");
                 }
                 break;



More information about the mapserver-commits mailing list