From: Jarkko Hietaniemi Date: Thu, 12 Aug 1999 10:06:24 +0000 (+0000) Subject: Remove more spurious casting. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=172ae37913552511e7520a3ce173202c7fad775d;p=p5sagit%2Fp5-mst-13.2.git Remove more spurious casting. p4raw-id: //depot/cfgperl@3964 --- diff --git a/pp_sys.c b/pp_sys.c index ee06f58..33eddca 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -2485,9 +2485,9 @@ PP(pp_stat) #endif PUSHs(sv_2mortal(newSViv(PL_statcache.st_size))); #ifdef BIG_TIME - PUSHs(sv_2mortal(newSVnv((U32)PL_statcache.st_atime))); - PUSHs(sv_2mortal(newSVnv((U32)PL_statcache.st_mtime))); - PUSHs(sv_2mortal(newSVnv((U32)PL_statcache.st_ctime))); + PUSHs(sv_2mortal(newSVnv(PL_statcache.st_atime))); + PUSHs(sv_2mortal(newSVnv(PL_statcache.st_mtime))); + PUSHs(sv_2mortal(newSVnv(PL_statcache.st_ctime))); #else PUSHs(sv_2mortal(newSViv(PL_statcache.st_atime))); PUSHs(sv_2mortal(newSViv(PL_statcache.st_mtime)));