summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2018-09-26 12:43:04 -0400
committerJames E Keenan <jkeenan@cpan.org>2018-10-10 09:21:15 -0400
commitfc917fff56ad22b214333cf476db5f79abafd3a9 (patch)
tree8ff2a46bd68d4a3d459ebb4808a572ded5f71221 /mathoms.c
parent2ba232eb0aa02493a34e151fcd912e0876385eb6 (diff)
downloadperl-fc917fff56ad22b214333cf476db5f79abafd3a9.tar.gz
Eliminated 3 '-Wparentheses' warnings detected by g++-8.
For: RT # 133557
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mathoms.c b/mathoms.c
index 375e3e330f..8b003d3538 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -518,7 +518,7 @@ int
Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
{
int ret = 0;
- va_list(arglist);
+ va_list arglist;
/* Easier to special case this here than in embed.pl. (Look at what it
generates for proto.h) */
@@ -536,7 +536,7 @@ int
Perl_printf_nocontext(const char *format, ...)
{
dTHX;
- va_list(arglist);
+ va_list arglist;
int ret = 0;
#ifdef PERL_IMPLICIT_CONTEXT