Fix a bunch of type mismatch-related warnings (Jan Kiszka).

Fix a typo in my previous comming (spotted by Laurent Desnouges).


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4877 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
balrog 2008-07-16 12:13:52 +00:00
parent c5f2f66835
commit 526ccb7a26
7 changed files with 23 additions and 21 deletions

View file

@ -594,7 +594,7 @@ void OPPROTO op_shlr16_Rn(void)
void OPPROTO op_tasb_rN(void)
{
cond_t((env->gregs[PARAM1] && 0xff) == 0);
cond_t((env->gregs[PARAM1] & 0xff) == 0);
*(int8_t *) &env->gregs[PARAM1] |= 0x80;
RETURN();
}