From: Yu Watanabe Date: Mon, 3 Jan 2022 19:11:26 +0000 (+0900) Subject: coredump: drop unnecessary parentheses X-Git-Tag: v251-rc1~608^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F21985%2Fhead;p=thirdparty%2Fsystemd.git coredump: drop unnecessary parentheses --- 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);