From 633c3e8aa2a33cc72a1a5b5acc406910e6401c9a Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 4 Jan 2022 04:11:26 +0900 Subject: [PATCH] coredump: drop unnecessary parentheses --- src/coredump/coredump.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 9e0dafb1ce9..f7f2f194b4d 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -793,10 +793,9 @@ static int submit_coredump( r = maybe_remove_external_coredump(filename, coredump_node_fd >= 0 ? coredump_compressed_size : coredump_size); if (r < 0) return r; - if (r == 0) { + if (r == 0) (void) iovw_put_string_field(iovw, "COREDUMP_FILENAME=", filename); - - } else if (arg_storage == COREDUMP_STORAGE_EXTERNAL) + else if (arg_storage == COREDUMP_STORAGE_EXTERNAL) log_info("The core will not be stored: size %"PRIu64" is greater than %"PRIu64" (the configured maximum)", coredump_node_fd >= 0 ? coredump_compressed_size : coredump_size, arg_external_size_max); -- 2.47.3