mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -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
4
config.c
4
config.c
|
|
@ -1012,8 +1012,8 @@ parse_section_tweak(
|
|||
}
|
||||
|
||||
conf->tweak.max_shm_pool_size = min(mb * 1024 * 1024, INT32_MAX);
|
||||
LOG_WARN("tweak: max-shm-pool-size=%lu bytes",
|
||||
conf->tweak.max_shm_pool_size);
|
||||
LOG_WARN("tweak: max-shm-pool-size=%lld bytes",
|
||||
(long long)conf->tweak.max_shm_pool_size);
|
||||
}
|
||||
|
||||
else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue