Module: wine Branch: master Commit: 8f7eaf26ce329e0eea0e30aa1d32bd0b183b666b URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f7eaf26ce329e0eea0e30aa1d...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sun Nov 18 22:51:54 2012 +0100
user32: Remove two superfluous casts.
---
dlls/user32/tests/resource.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/resource.c b/dlls/user32/tests/resource.c index dd4342d..346cc2a 100644 --- a/dlls/user32/tests/resource.c +++ b/dlls/user32/tests/resource.c @@ -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");