From cbda0741a24f241e3b0add7e5fbd7cad3b3291d2 Mon Sep 17 00:00:00 2001 From: Steve Coast Date: Wed, 17 Jan 2007 14:08:50 +0000 Subject: [PATCH] up the max seg ids --- osm2pgsql.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osm2pgsql.c b/osm2pgsql.c index ade58897..9cc68216 100644 --- a/osm2pgsql.c +++ b/osm2pgsql.c @@ -69,8 +69,8 @@ static struct tagDesc exportTags[] = { static const char *table_name = "planet_osm"; char fieldNames[128]; -#define MAX_ID_NODE (25000000) -#define MAX_ID_SEGMENT (25000000) +#define MAX_ID_NODE (35000000) +#define MAX_ID_SEGMENT (35000000) struct osmNode { unsigned int id;