Index: third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp |
diff --git a/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp b/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp |
index 8782d9dca817df06eae69b60bf1a675373f784cf..b2d484bfbd6dd1cf26d6c911349bbfffd412b4c7 100644 |
--- a/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp |
+++ b/third_party/WebKit/Source/platform/mhtml/MHTMLParser.cpp |
@@ -341,7 +341,7 @@ PassRefPtrWillBeRawPtr<ArchiveResource> MHTMLParser::parseNextPart(const MIMEHea |
content->append(line.utf8().data(), line.length()); |
if (contentTransferEncoding == MIMEHeader::QuotedPrintable) { |
// The line reader removes the \r\n, but we need them for the content in this case as the QuotedPrintable decoder expects CR-LF terminated lines. |
- content->append("\r\n", 2); |
+ content->append("\r\n", 2u); |
} |
} |
} |