mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-06 06:27:41 -07:00
Fix set_error return value, by Pierre d'Herbemont.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2367 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
90e950d17f
commit
46ea33974d
1 changed files with 1 additions and 1 deletions
|
|
@ -478,7 +478,7 @@ static void set_idt(int n, unsigned int dpl)
|
|||
}
|
||||
|
||||
/* ABI convention: after a syscall if there was an error the CF flag is set */
|
||||
static inline set_error(CPUX86State *env, int ret)
|
||||
static inline void set_error(CPUX86State *env, int ret)
|
||||
{
|
||||
if(ret<0)
|
||||
env->eflags = env->eflags | 0x1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue