You've already forked cpp-httplib
							
							Fix #571
This commit is contained in:
		@@ -46,7 +46,7 @@ string dump_multipart_files(const MultipartFormDataMap &files) {
 | 
				
			|||||||
    snprintf(buf, sizeof(buf), "content type: %s\n", file.content_type.c_str());
 | 
					    snprintf(buf, sizeof(buf), "content type: %s\n", file.content_type.c_str());
 | 
				
			||||||
    s += buf;
 | 
					    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 += buf;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    s += "----------------\n";
 | 
					    s += "----------------\n";
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user