diff options
author | 2010-07-01 04:33:59 +0000 | |
---|---|---|
committer | 2010-07-01 04:33:59 +0000 | |
commit | e8857974a70ae9c0345e6cb76770eb3a9bebcaef (patch) | |
tree | badd6590d96b9678b384ca3b6af5d1c09ec6db1a /sys | |
parent | Add missing function prototypes. (diff) | |
download | wireguard-openbsd-e8857974a70ae9c0345e6cb76770eb3a9bebcaef.tar.xz wireguard-openbsd-e8857974a70ae9c0345e6cb76770eb3a9bebcaef.zip |
Fix incorrect function prototype.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa64/hppa64/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/hppa64/trap.c b/sys/arch/hppa64/hppa64/trap.c index 7d78bd8c2a1..00016918484 100644 --- a/sys/arch/hppa64/hppa64/trap.c +++ b/sys/arch/hppa64/hppa64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.9 2010/05/24 15:06:05 deraadt Exp $ */ +/* $OpenBSD: trap.c,v 1.10 2010/07/01 04:33:59 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -115,7 +115,7 @@ u_char hppa64_regmap[32] = { offsetof(struct trapframe, tf_r31) / 8, }; -void userret(struct proc *p); +void userret(struct proc *p, register_t pc, u_quad_t oticks); void userret(struct proc *p, register_t pc, u_quad_t oticks) |