aboutsummaryrefslogtreecommitdiffstats
path: root/map.c
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-15 10:14:08 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-15 10:14:08 +0000
commitfde71b37d247c939c0f57c08a104b4ab30647de3 (patch)
treeb230a53cb985e678a4ed19d9539d2ae033d5ed87 /map.c
parentMerge branch 'bug/changelog' (diff)
parentDo not use C99 printf format specifiers and asprintf (diff)
downloadw3m-fde71b37d247c939c0f57c08a104b4ab30647de3.tar.gz
w3m-fde71b37d247c939c0f57c08a104b4ab30647de3.zip
Merge branch 'bug/printf'
Diffstat (limited to '')
-rw-r--r--map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/map.c b/map.c
index 12701e7..bb240ea 100644
--- a/map.c
+++ b/map.c
@@ -573,7 +573,7 @@ page_info_panel(Buffer *buf)
"<tr valign=top><td nowrap>Number of lines<td>",
Sprintf("%d", all)->ptr,
"<tr valign=top><td nowrap>Transferred bytes<td>",
- Sprintf("%d", buf->trbyte)->ptr, NULL);
+ Sprintf("%lu", (unsigned long)buf->trbyte)->ptr, NULL);
a = retrieveCurrentAnchor(buf);
if (a != NULL) {