Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yhirose committed Jul 19, 2020
1 parent 5ddaf94 commit 0db9d21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/simplesvr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ string dump_multipart_files(const MultipartFormDataMap &files) {
snprintf(buf, sizeof(buf), "content type: %s\n", file.content_type.c_str());
s += buf;

snprintf(buf, sizeof(buf), "text length: %lu\n", file.content.size());
snprintf(buf, sizeof(buf), "text length: %zu\n", file.content.size());
s += buf;

s += "----------------\n";
Expand Down

0 comments on commit 0db9d21

Please sign in to comment.