diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-19 18:43:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-19 18:43:33 +0000 |
commit | 4127354be649211012be2d3b07644f89e7979284 (patch) | |
tree | aac9d06f1d0811b27fc26844e20e7aad115193cd /sys | |
parent | 860b24227b166d1b686f3a86618447ea0eb0296d (diff) |
correct pointer to args
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/syscall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/syscall.c b/sys/arch/amd64/amd64/syscall.c index 7927de637b7..0320aeec741 100644 --- a/sys/arch/amd64/amd64/syscall.c +++ b/sys/arch/amd64/amd64/syscall.c @@ -1,4 +1,4 @@ -/* $OpenBSD: syscall.c,v 1.5 2004/02/18 16:40:06 tdeval Exp $ */ +/* $OpenBSD: syscall.c,v 1.6 2004/02/19 18:43:32 deraadt Exp $ */ /* $NetBSD: syscall.c,v 1.1 2003/04/26 18:39:32 fvdl Exp $ */ /*- @@ -269,7 +269,7 @@ syscall_fancy(frame) #endif #ifdef KTRACE if (KTRPOINT(p, KTR_SYSCALL)) - ktrsyscall(p, code, callp->sy_argsize, args); + ktrsyscall(p, code, callp->sy_argsize, argp); #endif rval[0] = 0; |