summaryrefslogtreecommitdiff
path: root/navit/map
diff options
context:
space:
mode:
authorwoglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-08-15 18:41:18 +0000
committerwoglinde <woglinde@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-08-15 18:41:18 +0000
commitfc215d8b6de35ce8de9ba22a41ee0bcf5492dc82 (patch)
tree654c990bbafca05504ed5e0e89abc49352cc8ee3 /navit/map
parentf9a10be108030e6d33bde96b348da2b60435f871 (diff)
downloadnavit-fc215d8b6de35ce8de9ba22a41ee0bcf5492dc82.tar.gz
Fix:map_binfile:correct cut and paste error in duplicate_equal function found by coverity
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5875 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/map')
-rw-r--r--navit/map/binfile/binfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/map/binfile/binfile.c b/navit/map/binfile/binfile.c
index aeaa2b683..9f373ee4e 100644
--- a/navit/map/binfile/binfile.c
+++ b/navit/map/binfile/binfile.c
@@ -2138,7 +2138,7 @@ duplicate_equal(gconstpointer a, gconstpointer b)
{
const struct duplicate *da=a;
const struct duplicate *db=b;
- return (da->c.x == db->c.x && da->c.y == da->c.y && g_str_equal(da->str,db->str));
+ return (da->c.x == db->c.x && da->c.y == db->c.y && g_str_equal(da->str,db->str));
}
/**