| Index: src/frames.cc
|
| diff --git a/src/frames.cc b/src/frames.cc
|
| index 9549c2db653621210a28c72a050b14950512eb4e..bcf675b49d378c8c424b7fa17807bdf8d77eaa16 100644
|
| --- a/src/frames.cc
|
| +++ b/src/frames.cc
|
| @@ -824,7 +824,7 @@ void JavaScriptFrame::PrintTop(Isolate* isolate,
|
| SmartArrayPointer<char> c_script_name =
|
| script_name->ToCString(DISALLOW_NULLS,
|
| ROBUST_STRING_TRAVERSAL);
|
| - PrintF(file, " at %s:%d", *c_script_name, line);
|
| + PrintF(file, " at %s:%d", c_script_name.get(), line);
|
| } else {
|
| PrintF(file, " at <unknown>:%d", line);
|
| }
|
|
|