m68k: Return semihosting errno values correctly
Fixing a simple typo, s/errno/err/, that caused the error status from GDB semihosted system calls to be returned incorrectly. Signed-off-by: Meador Inge <meadori@codesourcery.com> Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
parent
2ddef11bed
commit
e88a676e91
@ -150,7 +150,7 @@ static void m68k_semi_cb(CPUM68KState *env, target_ulong ret, target_ulong err)
|
|||||||
}
|
}
|
||||||
/* FIXME - handle put_user() failure */
|
/* FIXME - handle put_user() failure */
|
||||||
put_user_u32(ret, args);
|
put_user_u32(ret, args);
|
||||||
put_user_u32(errno, args + 4);
|
put_user_u32(err, args + 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define ARG(n) \
|
#define ARG(n) \
|
||||||
|
Loading…
Reference in New Issue
Block a user