From 5bfe565b5b0d8339109bcb94856036f2f46af281 Mon Sep 17 00:00:00 2001 From: bal Date: Tue, 5 Mar 1985 12:33:29 +0000 Subject: [PATCH] Argument is 4 bytes (pointer), not 2 bytes. --- mach/m68k2/libsys/times.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/m68k2/libsys/times.s b/mach/m68k2/libsys/times.s index 002f63be..6e74fe9a 100644 --- a/mach/m68k2/libsys/times.s +++ b/mach/m68k2/libsys/times.s @@ -2,6 +2,6 @@ .extern _times .text _times: move.w #0x2B,d0 - move.w 4(sp),a0 + move.l 4(sp),a0 trap #0 rts