| Index: base/debug/stack_trace.cc
|
| diff --git a/base/debug/stack_trace.cc b/base/debug/stack_trace.cc
|
| index fb2f6b508f2e0e582299e4321c9b5ef117cd8e53..c2378f32ef2f8ab6cfa7e40f4891daf42ea9f4b7 100644
|
| --- a/base/debug/stack_trace.cc
|
| +++ b/base/debug/stack_trace.cc
|
| @@ -264,8 +264,8 @@ ScopedStackFrameLinker::ScopedStackFrameLinker(void* fp, void* parent_fp)
|
|
|
| ScopedStackFrameLinker::~ScopedStackFrameLinker() {
|
| void* previous_parent_fp = LinkStackFrames(fp_, original_parent_fp_);
|
| - CHECK_EQ(parent_fp_, previous_parent_fp)
|
| - << "Stack frame's parent pointer has changed!";
|
| + // Stack frame's parent pointer has changed!
|
| + CHECK_EQ(parent_fp_, previous_parent_fp);
|
| }
|
|
|
| #endif // HAVE_TRACE_STACK_FRAME_POINTERS
|
|
|