summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-07-05 15:47:26 -0600
committerNicholas Clark <nick@ccl4.org>2021-07-06 10:39:51 +0000
commit97cd0e0920223ebafea7507fb0fb99c26aaa534d (patch)
tree8142358c61e3c2015a81fad2db7da5b4436b1dee /sv.c
parent6cc408b0b0595dd395bd87f2208969daccabc8be (diff)
downloadperl-97cd0e0920223ebafea7507fb0fb99c26aaa534d.tar.gz
Fix syntax error wwhen NAN_COMPARE_BROKEN
http://nntp.perl.org/group/perl.perl5.porters/26082
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 3c69dece01..e53f68c16e 100644
--- a/sv.c
+++ b/sv.c
@@ -9147,7 +9147,7 @@ Perl_sv_dec_nomg(pTHX_ SV *const sv)
UNLIKELY(was <= -NV_OVERFLOWS_INTEGERS_AT ||
was > NV_OVERFLOWS_INTEGERS_AT) &&
#if defined(NAN_COMPARE_BROKEN)
- LIKELY(!Perl_isinfnan(was)))
+ LIKELY(!Perl_isinfnan(was))
#else
LIKELY(!Perl_isinf(was))
#endif