diff options
| author | JosJuice <josjuice@gmail.com> | 2022-01-20 21:14:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-20 21:14:41 +0100 |
| commit | 7b8e846d0ab1a95c4070c3d89e38180895e536c6 (patch) | |
| tree | 8ac4fee6c918e4586a333d808173d4b20ee24c5b /Source/Core/Common/HttpRequest.cpp | |
| parent | 73bcf9c24bff56e562f120d2c1c02fb734e17dfd (diff) | |
| parent | fd04f4f32dcb322e3efa51400ed8638a8beb288f (diff) | |
Merge pull request #10367 from Pokechu22/fmt-8.1.1
Update to fmt 8.1.1
Diffstat (limited to 'Source/Core/Common/HttpRequest.cpp')
| -rw-r--r-- | Source/Core/Common/HttpRequest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/Common/HttpRequest.cpp b/Source/Core/Common/HttpRequest.cpp index e565fa293a..a8ed0d26ed 100644 --- a/Source/Core/Common/HttpRequest.cpp +++ b/Source/Core/Common/HttpRequest.cpp @@ -228,7 +228,8 @@ HttpRequest::Response HttpRequest::Impl::Fetch(const std::string& url, Method me else { ERROR_LOG_FMT(COMMON, "Failed to {} {}: server replied with code {} and body\n\x1b[0m{:.{}}", - type, url, response_code, buffer.data(), static_cast<int>(buffer.size())); + type, url, response_code, reinterpret_cast<char*>(buffer.data()), + static_cast<int>(buffer.size())); } return {}; } |
