Index: test/cctest/test-log-stack-tracer.cc |
diff --git a/test/cctest/test-log-stack-tracer.cc b/test/cctest/test-log-stack-tracer.cc |
index cae198856a437e4a906fcd7038b4c98a44486873..3f9d0b364a5682f0688b18f5ea7f71a97122155a 100644 |
--- a/test/cctest/test-log-stack-tracer.cc |
+++ b/test/cctest/test-log-stack-tracer.cc |
@@ -119,12 +119,12 @@ static void CreateTraceCallerFunction(v8::Local<v8::Context> context, |
const char* func_name, |
const char* trace_func_name) { |
i::EmbeddedVector<char, 256> trace_call_buf; |
- i::OS::SNPrintF(trace_call_buf, |
- "function %s() {" |
- " fp = new FPGrabber();" |
- " %s(fp.low_bits, fp.high_bits);" |
- "}", |
- func_name, trace_func_name); |
+ i::SNPrintF(trace_call_buf, |
+ "function %s() {" |
+ " fp = new FPGrabber();" |
+ " %s(fp.low_bits, fp.high_bits);" |
+ "}", |
+ func_name, trace_func_name); |
// Create the FPGrabber function, which grabs the caller's frame pointer |
// when called as a constructor. |