mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
user32: Remove two superfluous casts.
This commit is contained in:
parent
f62ba6ff5c
commit
8f7eaf26ce
@ -170,11 +170,11 @@ static void test_accel1(void)
|
||||
|
||||
ac[n].cmd = 0xfff0;
|
||||
ac[n].key = 0xffff;
|
||||
ac[n++].fVirt = (SHORT) 0x0000;
|
||||
ac[n++].fVirt = 0x0000;
|
||||
|
||||
ac[n].cmd = 0xfff0;
|
||||
ac[n].key = 0xffff;
|
||||
ac[n++].fVirt = (SHORT) 0x0001;
|
||||
ac[n++].fVirt = 0x0001;
|
||||
|
||||
hAccel = CreateAcceleratorTable( &ac[0], n );
|
||||
ok( hAccel != NULL, "create accelerator table\n");
|
||||
|
Loading…
Reference in New Issue
Block a user