aboutsummaryrefslogtreecommitdiffhomepage
path: root/fuzz
diff options
context:
space:
mode:
authorGravatar Kevin Lubick <kjlubick@google.com>2018-05-29 09:22:06 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-29 13:46:45 +0000
commit457fa97bc84bd3dac1a3c0a5c3b66c168ced70da (patch)
treedb56eb85828b46f9b93a04a0923595868b7dd856 /fuzz
parent1d1edc192ab46167e0d0bee3c9fb75170e35643e (diff)
Fix fuzz+Skottie integration
Bug: skia: Change-Id: Ic926f6a838ac1e6d358d51913dc5c58d3083274a Reviewed-on: https://skia-review.googlesource.com/130480 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Kevin Lubick <kjlubick@google.com>
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzz.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp
index 161969fb43..0917747790 100644
--- a/fuzz/fuzz.cpp
+++ b/fuzz/fuzz.cpp
@@ -201,7 +201,7 @@ static int fuzz_file(SkString path, SkString type) {
return 0;
}
#endif
- SkDebugf("Unknown type %s\n");
+ SkDebugf("Unknown type %s\n", type.c_str());
SkCommandLineFlags::PrintUsage();
return 1;
}