From: Collin Funk Date: Fri, 20 Feb 2026 04:49:40 +0000 (-0800) Subject: maint: paste: prefer static initialization X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef72d0edd299946fe5a892d334736d3965d6d9d6;p=thirdparty%2Fcoreutils.git maint: paste: prefer static initialization * src/paste.c (main): Remove unnecessary initializations. --- diff --git a/src/paste.c b/src/paste.c index e8d32f15c6..bcc0b66338 100644 --- a/src/paste.c +++ b/src/paste.c @@ -501,9 +501,6 @@ main (int argc, char **argv) atexit (close_stdout); - have_read_stdin = false; - serial_merge = false; - while ((optc = getopt_long (argc, argv, "d:sz", longopts, NULL)) != -1) { switch (optc)