Skip to content

Commit

Permalink
ccstruct: Fix wrong format string
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed May 11, 2017
1 parent 0c88b72 commit 9abbc4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ccstruct/imagedata.cpp
Expand Up @@ -492,8 +492,8 @@ inT64 DocumentData::UnCache() {
pages_offset_ = -1;
set_total_pages(-1);
set_memory_used(0);
tprintf("Unloaded document %s, saving %d memory\n", document_name_.string(),
memory_saved);
tprintf("Unloaded document %s, saving %" PRId64 " memory\n",
document_name_.string(), memory_saved);
return memory_saved;
}

Expand Down

0 comments on commit 9abbc4c

Please sign in to comment.