Index: src/ports/SkDebug_win.cpp |
=================================================================== |
--- src/ports/SkDebug_win.cpp (revision 8005) |
+++ src/ports/SkDebug_win.cpp (working copy) |
@@ -21,8 +21,8 @@ |
va_list args; |
va_start(args, format); |
vsnprintf(buffer, kBufferSize, format, args); |
robertphillips
2013/03/07 15:23:16
Does this work?
bsalomon
2013/03/07 15:44:22
yes! And our long strings don't get cut off.
|
+ vprintf(format, args); |
va_end(args); |
OutputDebugStringA(buffer); |
- printf(buffer); |
} |