Index: Source/platform/network/HTTPParsers.cpp |
diff --git a/Source/platform/network/HTTPParsers.cpp b/Source/platform/network/HTTPParsers.cpp |
index 88a267d725f5e08f893de225f182a7cc4ab790d7..d34d46bf81c53b821f694886845290792afbbc63 100644 |
--- a/Source/platform/network/HTTPParsers.cpp |
+++ b/Source/platform/network/HTTPParsers.cpp |
@@ -136,7 +136,7 @@ static const size_t maxInputSampleSize = 128; |
static String trimInputSample(const char* p, size_t length) |
{ |
if (length > maxInputSampleSize) |
- return String(p, maxInputSampleSize) + horizontalEllipsis; |
+ return String(p, maxInputSampleSize) + horizontalEllipsisCharacter; |
return String(p, length); |
} |