From ee740839c0096a8454a4a0dbf040bc1e913f9498 Mon Sep 17 00:00:00 2001 From: "Paul \"LeoNerd\" Evans" Date: Sat, 5 Feb 2022 13:43:43 +0000 Subject: [PATCH] Expansions of PERLVAR* in intrpvar.h should not end in semicolons --- intrpvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intrpvar.h b/intrpvar.h index d07644605add..274cb30c8c6e 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -1026,7 +1026,7 @@ PERLVAR(I, wcrtomb_ps, mbstate_t) /* Enough space for the reserved byte, 1 for a potential leading 0, then enough * for the longest representable integer plus an extra, the 3 flag characters, * and NUL */ -PERLVARA(I, mem_log, 1 + 1 + TYPE_DIGITS(UV) + 1 + 3 + 1, char); +PERLVARA(I, mem_log, 1 + 1 + TYPE_DIGITS(UV) + 1 + 3 + 1, char) #endif /* If you are adding a U8 or U16, check to see if there are 'Space' comments