diff options
| author | Collin Funk <collin.funk1@gmail.com> | 2026-02-19 21:11:27 -0800 |
|---|---|---|
| committer | Collin Funk <collin.funk1@gmail.com> | 2026-02-19 21:11:27 -0800 |
| commit | ecf3f98eec0ce8e7991fd4956374b604527c80da (patch) | |
| tree | fdd17726e4e09e881c3677adc83acac542587328 /src | |
| parent | 85dde4c2d9c8e929f604ead6c6534b761a0c5df8 (diff) | |
| download | coreutils-ecf3f98eec0ce8e7991fd4956374b604527c80da.tar.gz coreutils-ecf3f98eec0ce8e7991fd4956374b604527c80da.zip | |
maint: wc: prefer static initialization
* src/wc.c (main): Remove unnecessary initializations.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wc.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -813,10 +813,6 @@ main (int argc, char **argv) posixly_correct = (getenv ("POSIXLY_CORRECT") != NULL); - print_lines = print_words = print_chars = print_bytes = false; - print_linelength = false; - total_lines = total_words = total_chars = total_bytes = max_line_length = 0; - while ((optc = getopt_long (argc, argv, "clLmw", longopts, NULL)) != -1) switch (optc) { |
