mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-17 05:33:52 -04:00
fix printf-format errors in 32-bit builds
This commit is contained in:
parent
644859019e
commit
019b6bc039
4 changed files with 5 additions and 4 deletions
2
csi.c
2
csi.c
|
|
@ -336,7 +336,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
* _not_ preceeded by a graphical character.
|
||||
*/
|
||||
int count = vt_param_get(term, 0, 1);
|
||||
LOG_DBG("REP: '%C' %d times", term->vt.last_printed, count);
|
||||
LOG_DBG("REP: '%lc' %d times", (wint_t)term->vt.last_printed, count);
|
||||
|
||||
const int width = wcwidth(term->vt.last_printed);
|
||||
if (width > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue