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: v234~847^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e2b4a6994e29544cb25e5387961d8a9dcf65063;p=platform%2Fupstream%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 6862185..d55d896 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;