summaryrefslogtreecommitdiff
path: root/navit/map
diff options
context:
space:
mode:
authorsleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2013-08-29 19:20:12 +0000
committersleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2013-08-29 19:20:12 +0000
commit3816d43631874c6718251556a841dccc71b3637c (patch)
tree60d59cd54cfd2cb18f1735f517086ca953a9bf09 /navit/map
parenteb685bd1ef874309c9b49a8cd7cc7ca3f952bf3d (diff)
downloadnavit-3816d43631874c6718251556a841dccc71b3637c.tar.gz
Fix:core:Use LONGLONG_(HEX_)FMT instead of %Ld/%lld/%Lx.
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5622 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/map')
-rw-r--r--navit/map/binfile/binfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/navit/map/binfile/binfile.c b/navit/map/binfile/binfile.c
index d24ad2984..69483ab6c 100644
--- a/navit/map/binfile/binfile.c
+++ b/navit/map/binfile/binfile.c
@@ -270,7 +270,7 @@ binfile_read_eoc64(struct file *fi)
dbg(1,"eoc wrong\n");
eoc=NULL;
}
- dbg(1,"eoc64 ok 0x%Lx 0x%Lx\n",eoc->zip64eofst,eoc->zip64ecsz);
+ dbg(1,"eoc64 ok 0x"LONGLONG_HEX_FMT " 0x"LONGLONG_HEX_FMT "\n",eoc->zip64eofst,eoc->zip64ecsz);
}
file_data_free(fi,(unsigned char *)eocl);
return eoc;
@@ -922,7 +922,7 @@ zipfile_to_tile(struct map_priv *m, struct zip_cd *cd, struct tile *t)
char *zipfn;
struct file *fi;
dbg(1,"enter %p %p %p\n", m, cd, t);
- dbg(1,"cd->zipofst=0x%Lx\n", binfile_cd_offset(cd));
+ dbg(1,"cd->zipofst=0x"LONGLONG_HEX_FMT "\n", binfile_cd_offset(cd));
t->start=NULL;
t->mode=1;
if (m->fis)