From bd3a25f3ce681a686c2d59d5149991e0635d01fd Mon Sep 17 00:00:00 2001 From: Mario Castro Gama Date: Fri, 10 Nov 2017 17:47:15 +0100 Subject: [PATCH] Increased MAXNUMNODES Now the limit is 200k nodes --- src/inp2shp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inp2shp.h b/src/inp2shp.h index 9b717a5..856d5e0 100644 --- a/src/inp2shp.h +++ b/src/inp2shp.h @@ -23,7 +23,7 @@ #define MAXTOKS 40 /* Max. items per line of input */ #define UCHAR(x) (((x) >= 'a' && (x) <= 'z') ? ((x)&~32) : (x)) /* #define DEBUG 1 */ -#define MAXNUMNODES 5000 +#define MAXNUMNODES 200000 void remove_shp(char *shapefile); int str_is_shp(char *str);