aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ports/SkDebug_win.cpp
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-13 15:16:42 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-07-13 15:16:42 +0000
commit30b74fc1d3e31a6ff3c3bdf6c0ac49a269b9fa29 (patch)
tree96612d659014a882a683c372e7bb0f6dd88fae20 /src/ports/SkDebug_win.cpp
parent2377b52ee43b7824656e50731cf0fae89c9a0c4f (diff)
send output to printf as well, for commandlines
git-svn-id: http://skia.googlecode.com/svn/trunk@1846 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/ports/SkDebug_win.cpp')
-rw-r--r--src/ports/SkDebug_win.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ports/SkDebug_win.cpp b/src/ports/SkDebug_win.cpp
index 68284933bb..71ecd6594e 100644
--- a/src/ports/SkDebug_win.cpp
+++ b/src/ports/SkDebug_win.cpp
@@ -31,5 +31,6 @@ void SkDebugf(const char format[], ...) {
va_end(args);
OutputDebugStringA(buffer);
+ printf(buffer);
}