Chromium Code Reviews| Index: src/string-stream.cc |
| =================================================================== |
| --- src/string-stream.cc (revision 3160) |
| +++ src/string-stream.cc (working copy) |
| @@ -188,7 +188,7 @@ |
| void StringStream::PrintObject(Object* o) { |
| o->ShortPrint(this); |
| if (o->IsString()) { |
| - if (String::cast(o)->length() <= String::kMaxMediumStringSize) { |
| + if (String::cast(o)->length() <= String::kMaxMediumSize) { |
| return; |
| } |
| } else if (o->IsNumber() || o->IsOddball()) { |