We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083e18b commit 1257491Copy full SHA for 1257491
tools/server/server-common.cpp
@@ -791,7 +791,7 @@ static void handle_media(
791
SRV_INF("downloading image from '%s'\n", url.c_str());
792
auto res = common_remote_get_content(url, params);
793
if (200 <= res.first && res.first < 300) {
794
- SRV_INF("downloaded %ld bytes\n", res.second.size());
+ SRV_INF("downloaded %zu bytes\n", res.second.size());
795
raw_buffer data;
796
data.insert(data.end(), res.second.begin(), res.second.end());
797
out_files.push_back(data);
0 commit comments