summaryrefslogtreecommitdiff
path: root/vms
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>2000-03-02 04:05:47 +0000
committerbailey <bailey@newman.upenn.edu>2000-03-02 04:05:47 +0000
commit1a6334fb5c9c869fe86aa35f1aba57f28d03da05 (patch)
tree5d963ed0b4d36da0a2a06743de46d868292262c1 /vms
parent3b558104ccfbe5d3cbad84ed8c394cf1d7aed045 (diff)
downloadperl-1a6334fb5c9c869fe86aa35f1aba57f28d03da05.tar.gz
FIx no-op in vms.c
p4raw-id: //depot/vmsperl@5427
Diffstat (limited to 'vms')
-rw-r--r--vms/vms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vms/vms.c b/vms/vms.c
index ba4fada81e..16c226aa7f 100644
--- a/vms/vms.c
+++ b/vms/vms.c
@@ -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);