diff options
author | Charles Bailey <bailey@newman.upenn.edu> | 2000-03-02 04:05:47 +0000 |
---|---|---|
committer | bailey <bailey@newman.upenn.edu> | 2000-03-02 04:05:47 +0000 |
commit | 1a6334fb5c9c869fe86aa35f1aba57f28d03da05 (patch) | |
tree | 5d963ed0b4d36da0a2a06743de46d868292262c1 /vms | |
parent | 3b558104ccfbe5d3cbad84ed8c394cf1d7aed045 (diff) | |
download | perl-1a6334fb5c9c869fe86aa35f1aba57f28d03da05.tar.gz |
FIx no-op in vms.c
p4raw-id: //depot/vmsperl@5427
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vms.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4266,7 +4266,7 @@ int my_utime(char *file, struct utimbuf *utimes) /* If input was UTC; convert to local for sys svc */ if (!VMSISH_TIME) unixtime = _toloc(unixtime); # endif - unixtime >> 1; secscale << 1; + unixtime >>= 1; secscale <<= 1; retsts = lib$emul(&secscale, &unixtime, &lowbit, bintime); if (!(retsts & 1)) { set_errno(EVMSERR); |