Fixed __menuet__set_bitfield_for_wanted_events in libc to allow bits 30 and 31 be set.

git-svn-id: svn://kolibrios.org@5029 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr
2014-08-11 23:11:42 +00:00
parent db841104b9
commit afa9806e47
2 changed files with 5 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ int __menuet__check_for_event(void)
return __ret;
}
void __menuet__set_bitfield_for_wanted_events(__u16 ev)
void __menuet__set_bitfield_for_wanted_events(__u32 ev)
{
__asm__ __volatile__("int $0x40"::"a"(40),"b"(ev));
}