diff options
author | peter <peter@FreeBSD.org> | 2015-02-08 22:17:20 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2015-02-08 22:17:20 +0000 |
commit | 969542edef027a0d305a42e2ede2c367050e807b (patch) | |
tree | e259d56852c16e671a0a35194eea0768ac027d0a | |
parent | 274501ab1e9bdc7bac3ea189e36e648916b35908 (diff) | |
download | FreeBSD-src-969542edef027a0d305a42e2ede2c367050e807b.zip FreeBSD-src-969542edef027a0d305a42e2ede2c367050e807b.tar.gz |
Repair ia64 build after r278347 - remove const from set_mcontext
-rw-r--r-- | sys/ia64/ia64/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/ia64/machdep.c b/sys/ia64/ia64/machdep.c index 668fa16..da707e9 100644 --- a/sys/ia64/ia64/machdep.c +++ b/sys/ia64/ia64/machdep.c @@ -1262,7 +1262,7 @@ get_mcontext(struct thread *td, mcontext_t *mc, int flags) } int -set_mcontext(struct thread *td, const mcontext_t *mc) +set_mcontext(struct thread *td, mcontext_t *mc) { struct _special s; struct trapframe *tf; |