| Index: Source/core/css/parser/MediaQueryToken.cpp
|
| diff --git a/Source/core/css/parser/MediaQueryToken.cpp b/Source/core/css/parser/MediaQueryToken.cpp
|
| index 8ec491a35bc533b1d8998302d061892f450ee5a8..149409511ed13e7d5855510157f999992351e2b6 100644
|
| --- a/Source/core/css/parser/MediaQueryToken.cpp
|
| +++ b/Source/core/css/parser/MediaQueryToken.cpp
|
| @@ -71,7 +71,7 @@ void MediaQueryToken::convertToPercentage()
|
| // FIXME - This doesn't cover all possible Token types, but it's enough for current testing.
|
| String MediaQueryToken::textForUnitTests() const
|
| {
|
| - char buffer[std::numeric_limits<float>::digits10];
|
| + char buffer[std::numeric_limits<float>::digits];
|
| if (!m_value.isNull())
|
| return m_value;
|
| if (m_type == LeftParenthesisToken)
|
|
|