From: Collin Funk Date: Fri, 20 Feb 2026 04:03:32 +0000 (-0800) Subject: maint: tee: prefer static initialization X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a398d52b65a40475215254a6724d0b7d325b9269;p=thirdparty%2Fcoreutils.git maint: tee: prefer static initialization * src/tee.c (main): Remove unnecessary initializations. --- diff --git a/src/tee.c b/src/tee.c index 3adbe1804c..ffd4b20ec9 100644 --- a/src/tee.c +++ b/src/tee.c @@ -136,9 +136,6 @@ main (int argc, char **argv) atexit (close_stdout); - append = false; - ignore_interrupts = false; - int optc; while ((optc = getopt_long (argc, argv, "aip", long_options, NULL)) != -1) {