diff options
author | Karl Williamson <khw@cpan.org> | 2021-07-05 15:47:26 -0600 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2021-07-06 10:39:51 +0000 |
commit | 97cd0e0920223ebafea7507fb0fb99c26aaa534d (patch) | |
tree | 8142358c61e3c2015a81fad2db7da5b4436b1dee /sv.c | |
parent | 6cc408b0b0595dd395bd87f2208969daccabc8be (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |