diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-04-09 20:39:05 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-04-09 20:39:05 +0000 |
commit | f2840507e11f4220e606b99bb2e895acd5cb6811 (patch) | |
tree | 6033a7134a4381e85dbc02625c88433bb7709ec9 /protocols/Steam/src/http_request.h | |
parent | b80be7b3bbfae105935f49c34e9e64f1760ad08e (diff) |
Steam: fixed errors in x64
git-svn-id: http://svn.miranda-ng.org/main/trunk@8904 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/http_request.h')
-rw-r--r-- | protocols/Steam/src/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h index 2e3f9e17a2..9425e8223c 100644 --- a/protocols/Steam/src/http_request.h +++ b/protocols/Steam/src/http_request.h @@ -70,7 +70,7 @@ public: if (pData != NULL)
mir_free(pData);
- dataLength = size;
+ dataLength = (int)size;
pData = (char*)mir_alloc(size);
memcpy(pData, data, size);
}
|