diff options
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4466,7 +4466,7 @@ PP(pp_gmtime) else { NV input = Perl_floor(POPn); when = (Time64_T)input; - if (NV_ne_nowarn(when, input)) { + if (when != input) { /* diag_listed_as: gmtime(%f) too large */ Perl_ck_warner(aTHX_ packWARN(WARN_OVERFLOW), "%s(%.0" NVff ") too large", opname, input); |