mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
grid: fix 32-bit compilation
This commit is contained in:
parent
a5d7f2e592
commit
60a55d04ac
1 changed files with 4 additions and 2 deletions
6
grid.c
6
grid.c
|
|
@ -722,8 +722,10 @@ grid_resize_and_reflow(
|
|||
|
||||
struct timeval diff;
|
||||
timersub(&stop, &start, &diff);
|
||||
LOG_INFO("reflowed %d -> %d rows in %lds %ldµs",
|
||||
old_rows, new_rows, diff.tv_sec, diff.tv_usec);
|
||||
LOG_INFO("reflowed %d -> %d rows in %llds %lldµs",
|
||||
old_rows, new_rows,
|
||||
(long long)diff.tv_sec,
|
||||
(long long)diff.tv_usec);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue