aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/sk_tool_utils_font.cpp
diff options
context:
space:
mode:
authorGravatar djsollen <djsollen@google.com>2016-01-22 06:04:55 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-01-22 06:04:55 -0800
commit4c5cd7d527ed29aabfa72aa47b23a4496eeda357 (patch)
tree49959934e26882dd38d3bb1939f7c9b60d70f10d /tools/sk_tool_utils_font.cpp
parent6d3cef930ad19b0f55543ca40f7a07030f4fe508 (diff)
Consolidate SK_CRASH and sk_throw into SK_ABORT
Diffstat (limited to 'tools/sk_tool_utils_font.cpp')
-rw-r--r--tools/sk_tool_utils_font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sk_tool_utils_font.cpp b/tools/sk_tool_utils_font.cpp
index af52b37a4e..0f8c96f617 100644
--- a/tools/sk_tool_utils_font.cpp
+++ b/tools/sk_tool_utils_font.cpp
@@ -42,7 +42,7 @@ SkTypeface* create_font(const char* name, SkTypeface::Style style) {
}
if (!fontData) {
// Once all legacy callers to portable fonts are converted, replace this with
- // SK_CRASH();
+ // SK_ABORT();
SkDebugf("missing %s %d\n", name, style);
// If we called SkTypeface::CreateFromName() here we'd recurse infinitely,
// so we reimplement its core logic here inline without the recursive aspect.