diff options
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);
}
|