Skip to content

Commit

Permalink
Expansions of PERLVAR* in intrpvar.h should not end in semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Feb 5, 2022
1 parent 607f3ee commit ee74083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intrpvar.h
Expand Up @@ -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
Expand Down

0 comments on commit ee74083

Please sign in to comment.