19 lines
680 B
Diff
19 lines
680 B
Diff
From 8194f06ee36b2ee15de82ac3984b6394cb20ba3d Mon Sep 17 00:00:00 2001
|
|
From: Thomas Sailer <t.sailer@alumni.ethz.ch>
|
|
Date: Fri, 1 May 2020 13:48:48 +0200
|
|
Subject: ia32 compile fix
|
|
|
|
|
|
diff --git a/carto/cartorenderdb.cc b/carto/cartorenderdb.cc
|
|
index d10fb8b8..7284ee8f 100644
|
|
--- a/carto/cartorenderdb.cc
|
|
+++ b/carto/cartorenderdb.cc
|
|
@@ -3933,7 +3933,7 @@ CartoRender::renderobjs_t CartoRender::dbquery_placenamesmedium(void) const
|
|
continue;
|
|
tagname_t val_population(pobj->find_tag(key_population));
|
|
ro->copy_field_string(*odb, "name", val_name);
|
|
- long score(1);
|
|
+ int64_t score(1);
|
|
if (val_place == name_town)
|
|
score = 1000;
|
|
else if (val_place == name_city)
|