From: Zbigniew Jędrzejewski-Szmek Date: Tue, 8 Nov 2016 05:21:20 +0000 (-0500) Subject: coredump: bump type of arg_journal_size_max to uint64 too X-Git-Tag: v233~445^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4612%2Fhead;p=thirdparty%2Fsystemd.git coredump: bump type of arg_journal_size_max to uint64 too For normal arches this doesn't matter, but on arm32 arg_journal_size_max was smaller than the other *SizeMax variables. This doesn't seem useful. This is anothet part of the fix in 5206a724a0. --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 686218525aa..d55d896df49 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -111,7 +111,7 @@ static CoredumpStorage arg_storage = COREDUMP_STORAGE_EXTERNAL; static bool arg_compress = true; static uint64_t arg_process_size_max = PROCESS_SIZE_MAX; static uint64_t arg_external_size_max = EXTERNAL_SIZE_MAX; -static size_t arg_journal_size_max = JOURNAL_SIZE_MAX; +static uint64_t arg_journal_size_max = JOURNAL_SIZE_MAX; static uint64_t arg_keep_free = (uint64_t) -1; static uint64_t arg_max_use = (uint64_t) -1;