diff options
author | mtklein <mtklein@chromium.org> | 2015-10-28 10:02:06 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-28 10:02:06 -0700 |
commit | e4881b6f2bdf5f2240e43a64d3e8ad6c6cf54012 (patch) | |
tree | c080613c0d2b5d9540ac844cf0d9cbd3852ea208 | |
parent | 72815e9b157137410d46f9916bd6486347e5446d (diff) |
add a note
BUG=skia:
Review URL: https://codereview.chromium.org/1405083008
-rw-r--r-- | src/ports/SkDebug_win.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ports/SkDebug_win.cpp b/src/ports/SkDebug_win.cpp index ed706c1d7b..67c2397ce5 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); |