Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamiras committed Dec 19, 2019
1 parent a0187f4 commit cd5c7a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions RA_Interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -434,9 +434,9 @@ static void FetchIntegrationFromWeb(const char* sHostName, DWORD* pStatusCode)
{
DWORD nBytesRead = 0;
#if defined(_M_X64) || defined(__amd64__)
char* remote_name = "bin/RA_Integration_x64.dll"
const char* remote_name = "bin/RA_Integration_x64.dll";
#else
char* remote_name = "bin/RA_Integration.dll"
const char* remote_name = "bin/RA_Integration.dll";
#endif
if (DoBlockingHttpGetWithRetry(sHostName, remote_name, buffer, MAX_SIZE, &nBytesRead, pStatusCode))
WriteBufferToFile(GetIntegrationPath(), buffer, nBytesRead);
Expand Down Expand Up @@ -584,9 +584,9 @@ void RA_Init(HWND hMainHWND, int nConsoleID, const char* sClientVersion)
ZeroMemory(buffer, 1024);

#if defined(_M_X64) || defined(__amd64__)
char* latest_page = "LatestIntegration64.html"
const char* latest_page = "LatestIntegration64.html";
#else
char* latest_page = "LatestIntegration.html"
const char* latest_page = "LatestIntegration.html";
#endif

if (DoBlockingHttpGetWithRetry(sHostName, latest_page, buffer, 1024, &nBytesRead, &nStatusCode) == FALSE)
Expand Down

0 comments on commit cd5c7a2

Please sign in to comment.