Austin English : user.exe16: Fix a compiler warning on clang.
Module: wine Branch: master Commit: 0f05f90aa26aaea35457c59b55eb1e089d7f6a54 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f05f90aa26aaea35457c59b55... Author: Austin English <austinenglish(a)gmail.com> Date: Mon Sep 20 03:52:27 2010 -0500 user.exe16: Fix a compiler warning on clang. --- dlls/user.exe16/bidi.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/user.exe16/bidi.c b/dlls/user.exe16/bidi.c index e415785..2b4f114 100644 --- a/dlls/user.exe16/bidi.c +++ b/dlls/user.exe16/bidi.c @@ -62,7 +62,7 @@ DWORD WINAPI ChangeKeyboardCodePage16( UINT16 iLangLeft, UINT16 iLangRight ) * RETURNS * The old keyboard layout pair. */ -DWORD WINAPI ChangeKeyboardLanguage16( UINT16 iLangLeft, UINT iLangRight ) +DWORD WINAPI ChangeKeyboardLanguage16( UINT16 iLangLeft, UINT16 iLangRight ) { FIXME( "( %hu, %hu ): stub\n", iLangLeft, iLangRight ); return 0;
participants (1)
-
Alexandre Julliard