aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkStringUtils.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-08-18 10:33:30 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-18 10:33:30 -0700
commit5ea0363bf12495412649fa11b62e1a6caa71c093 (patch)
treeeedcf10c2ef211e0a83114d123285aed3047b1d9 /src/core/SkStringUtils.cpp
parent2ad37be2b1f596a163e889ae0282227055c6b661 (diff)
ClearStencilClip in GrBatch
Diffstat (limited to 'src/core/SkStringUtils.cpp')
-rw-r--r--src/core/SkStringUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkStringUtils.cpp b/src/core/SkStringUtils.cpp
index 35e55570c3..6f5699c805 100644
--- a/src/core/SkStringUtils.cpp
+++ b/src/core/SkStringUtils.cpp
@@ -57,7 +57,7 @@ SkString SkTabString(const SkString& string, int tabCnt) {
}
if (*input != '\0') {
result.append(tabs);
+ result.append(input);
}
- result.append(input);
return result;
}