Index: src/ports/SkDebug_win.cpp |
diff --git a/src/ports/SkDebug_win.cpp b/src/ports/SkDebug_win.cpp |
index ed706c1d7b83cc83708cdaa386534f12c4222fa8..67c2397ce59cded63403f577aa4150cb7ff10ee8 100644 |
--- a/src/ports/SkDebug_win.cpp |
+++ b/src/ports/SkDebug_win.cpp |
@@ -23,7 +23,7 @@ void SkDebugf(const char format[], ...) { |
va_start(args, format); |
vfprintf(stderr, format, args); |
va_end(args); |
- fflush(stderr); |
+ fflush(stderr); // stderr seems to be buffered on Windows. |
va_start(args, format); |
vsnprintf(buffer, kBufferSize, format, args); |