Do not use C99 printf format specifiers and asprintf
This commit is contained in:
2
map.c
2
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("%zu", buf->trbyte)->ptr, NULL);
|
||||
Sprintf("%lu", (unsigned long)buf->trbyte)->ptr, NULL);
|
||||
|
||||
a = retrieveCurrentAnchor(buf);
|
||||
if (a != NULL) {
|
||||
|
Reference in New Issue
Block a user