Author: sserapion
Date: Thu Jul 24 16:32:08 2008
New Revision: 34758
URL:
http://svn.reactos.org/svn/reactos?rev=34758&view=rev
Log:
Fix cast from pointer to integer of different size
Modified:
branches/ros-amd64-bringup/reactos/base/setup/welcome/welcome.c
Modified: branches/ros-amd64-bringup/reactos/base/setup/welcome/welcome.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/base/…
==============================================================================
--- branches/ros-amd64-bringup/reactos/base/setup/welcome/welcome.c [iso-8859-1]
(original)
+++ branches/ros-amd64-bringup/reactos/base/setup/welcome/welcome.c [iso-8859-1] Thu Jul
24 16:32:08 2008
@@ -179,7 +179,7 @@
rcRightPanel.left = rcLeftPanel.right;
rcRightPanel.right = ulInnerWidth - 1;
- if (!LoadString(hInstance, (UINT)MAKEINTRESOURCE(IDS_APPTITLE), szAppTitle, 80))
+ if (!LoadString(hInstance, (UINT_PTR)MAKEINTRESOURCE(IDS_APPTITLE), szAppTitle, 80))
_tcscpy(szAppTitle, TEXT("ReactOS Welcome"));
/* Create main window */