[ros-diffs] [sserapion] 34758: Fix cast from pointer to integer of different size

sserapion at svn.reactos.org sserapion at svn.reactos.org
Thu Jul 24 23:32:08 CEST 2008


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/setup/welcome/welcome.c?rev=34758&r1=34757&r2=34758&view=diff
==============================================================================
--- 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 */



More information about the Ros-diffs mailing list