From 5a2a54591d944a3761d96d8767616d32ee45b111 Mon Sep 17 00:00:00 2001 From: Jacob Goense Date: Mon, 6 Feb 2017 14:00:34 +0100 Subject: [PATCH] or1k: fix build This fixes a typo in the arch_set_success for the or1k architecture. * linux/or1k/set_error.c (arch_setsuccess): Rename to arch_set_success. Fixes: 41d647c ("Implement success injection") Closes: https://github.com/strace/strace/pull/6 --- linux/or1k/set_error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/or1k/set_error.c b/linux/or1k/set_error.c index db86eae4..17973387 100644 --- a/linux/or1k/set_error.c +++ b/linux/or1k/set_error.c @@ -6,7 +6,7 @@ arch_set_error(struct tcb *tcp) } static int -arch_setsuccess(struct tcb *tcp) +arch_set_success(struct tcb *tcp) { or1k_regs.gpr[11] = tcp->u_rval; return set_regs(tcp->pid); -- 2.40.0