From 0c493a626f6530154b4f99cb935212c789108794 Mon Sep 17 00:00:00 2001 From: Samuel Serapion Date: Thu, 24 Jul 2008 21:32:08 +0000 Subject: [PATCH] Fix cast from pointer to integer of different size svn path=/branches/ros-amd64-bringup/; revision=34758 --- reactos/base/setup/welcome/welcome.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/setup/welcome/welcome.c b/reactos/base/setup/welcome/welcome.c index 87d11d7090e..b6a8167c193 100755 --- a/reactos/base/setup/welcome/welcome.c +++ b/reactos/base/setup/welcome/welcome.c @@ -179,7 +179,7 @@ _tWinMain(HINSTANCE hInst, 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 */