Author: cwittich Date: Sat Jan 6 00:02:15 2007 New Revision: 25319
URL: http://svn.reactos.org/svn/reactos?rev=25319&view=rev Log: fix a warning
Modified: trunk/reactos/base/system/winlogon/wlx.c
Modified: trunk/reactos/base/system/winlogon/wlx.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/winlogon/wlx.c?... ============================================================================== --- trunk/reactos/base/system/winlogon/wlx.c (original) +++ trunk/reactos/base/system/winlogon/wlx.c Sat Jan 6 00:02:15 2007 @@ -165,7 +165,7 @@ if (PreviousWindowProc != NULL) return -1; PreviousWindowProc = dlgprc; - return (int)DialogBoxW(hInst, lpszTemplate, hwndOwner, DefaultWlxWindowProc); + return (int)DialogBoxW((HINSTANCE) hInst, lpszTemplate, hwndOwner, DefaultWlxWindowProc); }
/*