aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkRect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/SkRect.cpp')
-rw-r--r--src/core/SkRect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkRect.cpp b/src/core/SkRect.cpp
index d602754c5b..7d7324920c 100644
--- a/src/core/SkRect.cpp
+++ b/src/core/SkRect.cpp
@@ -67,7 +67,7 @@ void SkRect::set(const SkPoint pts[], int count)
SkASSERT((pts && count > 0) || count == 0);
if (count <= 0) {
- bzero(this, sizeof(SkRect));
+ sk_bzero(this, sizeof(SkRect));
} else {
#ifdef SK_SCALAR_SLOW_COMPARES
int32_t l, t, r, b;