From: Collin Funk Date: Fri, 20 Feb 2026 04:10:58 +0000 (-0800) Subject: maint: fold: prefer static initialization X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f009f68e3bea2beef74d6d66dab35c66a6e1431c;p=thirdparty%2Fcoreutils.git maint: fold: prefer static initialization * src/fold.c (main): Remove unnecessary initializations. --- diff --git a/src/fold.c b/src/fold.c index ff6fea247c..666490f95d 100644 --- a/src/fold.c +++ b/src/fold.c @@ -300,8 +300,6 @@ main (int argc, char **argv) atexit (close_stdout); - break_spaces = have_read_stdin = false; - while ((optc = getopt_long (argc, argv, shortopts, longopts, NULL)) != -1) { char optargbuf[2];