From d92df29a21e9cb0468b43dca8dac043c4710dac3 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 19 Nov 2024 22:22:57 -0800 Subject: [PATCH] =?utf8?q?factor:=20fix=20=E2=80=98return=E2=80=99=20typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * src/factor.c (lbuf_putint): Don’t use ‘return E;’ in a void function’s body, fixing a recently-introduced typo. --- src/factor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/factor.c b/src/factor.c index 70c982292f..85cd1b1c90 100644 --- a/src/factor.c +++ b/src/factor.c @@ -2416,7 +2416,7 @@ lbuf_putint_append (uintmax_t i, char *bufend) static void lbuf_putint (uintmax_t i) { - return lbuf_putint_append (i, lbuf_buf + sizeof lbuf_buf); + lbuf_putint_append (i, lbuf_buf + sizeof lbuf_buf); } /* Append the string representation of T to lbuf_buf. */ -- 2.47.3