| Index: src/objects-printer.cc
|
| diff --git a/src/objects-printer.cc b/src/objects-printer.cc
|
| index 60c1ef4c38e2c21d7a4d52799dc82744def79055..37ae9b6d7a925acb4d1e0dcb14d96a4712f60fd4 100644
|
| --- a/src/objects-printer.cc
|
| +++ b/src/objects-printer.cc
|
| @@ -830,7 +830,7 @@ void JSTypedArray::JSTypedArrayPrint(FILE* out) {
|
| byte_length()->ShortPrint(out);
|
| PrintF(out, "\n - length = ");
|
| length()->ShortPrint(out);
|
| - PrintF("\n");
|
| + PrintF(out, "\n");
|
| PrintElements(out);
|
| }
|
|
|
| @@ -844,7 +844,7 @@ void JSDataView::JSDataViewPrint(FILE* out) {
|
| byte_offset()->ShortPrint(out);
|
| PrintF(out, "\n - byte_length = ");
|
| byte_length()->ShortPrint(out);
|
| - PrintF("\n");
|
| + PrintF(out, "\n");
|
| }
|
|
|
|
|
|
|