From a86201290d71ea7e60ff78c1abe9abef3b0fd9ee Mon Sep 17 00:00:00 2001 From: Moritz Grimm Date: Mon, 27 Jan 2020 23:48:19 +0100 Subject: [PATCH] Remove redundant decrement --- src/util.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util.c b/src/util.c index bb6e251..18c508e 100644 --- a/src/util.c +++ b/src/util.c @@ -357,7 +357,6 @@ util_shellquote(const char *in, size_t outlen_max) out_len--; } *out_p++ = '\''; - out_len--; return (out); }