summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/v8/src/string-stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/v8/src/string-stream.cc')
-rw-r--r--src/3rdparty/v8/src/string-stream.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/v8/src/string-stream.cc b/src/3rdparty/v8/src/string-stream.cc
index 30519b5..cffd7b0 100644
--- a/src/3rdparty/v8/src/string-stream.cc
+++ b/src/3rdparty/v8/src/string-stream.cc
@@ -274,10 +274,10 @@ void StringStream::OutputToFile(FILE* out) {
for (unsigned next; (next = position + 2048) < length_; position = next) {
char save = buffer_[next];
buffer_[next] = '\0';
- internal::PrintF(out, "%s", &buffer_[position]);
+ internal::FPrintF(out, "%s", &buffer_[position]);
buffer_[next] = save;
}
- internal::PrintF(out, "%s", &buffer_[position]);
+ internal::FPrintF(out, "%s", &buffer_[position]);
}