Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2793)

Unified Diff: dm/DMReporter.cpp

Issue 177053005: DM: don't crash on Mac. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMReporter.cpp
diff --git a/dm/DMReporter.cpp b/dm/DMReporter.cpp
index 1ff64c57cc5f56ded6207d0de5dcdfc27219b683..fb925abf7b03fdf94c89d52b88f1c5703edd7fe6 100644
--- a/dm/DMReporter.cpp
+++ b/dm/DMReporter.cpp
@@ -24,7 +24,7 @@ void Reporter::finish(SkString name) {
status.appendf(", %d failed", failed);
}
status.appendf("\t[%s done]", name.c_str());
- SkDebugf(status.c_str());
+ SkDebugf("%s", status.c_str());
}
int32_t Reporter::failed() const {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698