From 132422bdd6be3d800cfeaabcef60f7dd3cbaf720 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sun, 24 Dec 2023 14:12:46 +0100 Subject: [PATCH] pipesz: avoid dead store MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- misc-utils/pipesz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/pipesz.c b/misc-utils/pipesz.c index 880408a92b..99c831fd90 100644 --- a/misc-utils/pipesz.c +++ b/misc-utils/pipesz.c @@ -260,7 +260,7 @@ int main(int argc, char **argv) ++n_opt_pipe; break; case 'n': - fd = strtos32_or_err(optarg, _("invalid fd argument")); + (void) strtos32_or_err(optarg, _("invalid fd argument")); ++n_opt_pipe; break; case 'o': -- 2.47.2