From 01e52b9adcb1574840d4238c0952d8e03da3bcb6 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 17 Feb 2024 21:51:46 -0800 Subject: [PATCH] nohup: document GCC bug number * src/nohup.c: Add GCC bug number to comment. --- src/nohup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nohup.c b/src/nohup.c index 8ecaf69fb5..c853638b44 100644 --- a/src/nohup.c +++ b/src/nohup.c @@ -72,7 +72,8 @@ To save output to FILE, use '%s COMMAND > FILE'.\n"), exit (status); } -/* GCC 13 gets confused by the dup2 calls. */ +/* GCC 13 gets confused by the dup2 calls + . */ #if 13 <= __GNUC__ # pragma GCC diagnostic ignored "-Wanalyzer-fd-leak" #endif -- 2.47.2