summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2022-02-05 13:43:43 +0000
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2022-02-05 15:39:13 +0000
commitd280f25fc9971e3edafb3b1ed2f1a06c6367181a (patch)
treeb64b14b04e1357ed096eb915a3bc572efd9f792c /intrpvar.h
parented18bf14c1a8429f1652c50634d0648d34bcfabd (diff)
downloadperl-d280f25fc9971e3edafb3b1ed2f1a06c6367181a.tar.gz
Expansions of PERLVAR* in intrpvar.h should not end in semicolons
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h
index d07644605a..274cb30c8c 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