Module: wine Branch: master Commit: a36e14d9c930ee32dfc95044dc500cf2c10ea470 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a36e14d9c930ee32dfc95044dc...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sat Jan 5 16:44:19 2008 +0000
imm32: Remove unneeded cast.
---
dlls/imm32/imm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index 58d0e3e..da39261 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -1082,7 +1082,7 @@ HWND WINAPI ImmGetDefaultIMEWnd(HWND hWnd) TRACE("Default created (%p)\n",hwndDefault); }
- return (HWND)hwndDefault; + return hwndDefault; }
/***********************************************************************