1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +03:00

coredump: Fix format string type mismatch

Fixes #23471
This commit is contained in:
Daan De Meyer 2022-05-22 14:36:07 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 87c7779599
commit 08e86b15fc

View File

@ -512,8 +512,8 @@ static int save_external_coredump(
if (truncated) if (truncated)
log_struct(LOG_INFO, log_struct(LOG_INFO,
LOG_MESSAGE("Core file was truncated to %zu bytes.", max_size), LOG_MESSAGE("Core file was truncated to %"PRIu64" bytes.", max_size),
"SIZE_LIMIT=%zu", max_size, "SIZE_LIMIT=%"PRIu64, max_size,
"MESSAGE_ID=" SD_MESSAGE_TRUNCATED_CORE_STR); "MESSAGE_ID=" SD_MESSAGE_TRUNCATED_CORE_STR);
r = fix_permissions(fd, tmp, fn, context, uid); r = fix_permissions(fd, tmp, fn, context, uid);