>From dd690f14bc62d90e0ce038d66ad012556a0dcc7e Mon Sep 17 00:00:00 2001 From: Ulrich Eckhardt Date: Mon, 14 Feb 2022 22:30:41 +0100 Subject: [PATCH] grep: Remove comment. The comment was introduced in 500f07fee50ab16a70fe2946b85318020c7f4017 and relates to absent cleanup code at the end of main(), not the code following it. It relates to fallible flushing of stdout and related error handling, but even then it doesn't explain much. --- src/grep.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/grep.c b/src/grep.c index 6ff852a..9c933e4 100644 --- a/src/grep.c +++ b/src/grep.c @@ -3008,6 +3008,5 @@ main (int argc, char **argv) status &= grep_command_line_arg (*files++); while (*files != NULL); - /* We register via atexit to test stdout. */ return errseen ? EXIT_TROUBLE : status; } -- 2.32.0