| Index: src/core/SkString.cpp
|
| diff --git a/src/core/SkString.cpp b/src/core/SkString.cpp
|
| index 7b3c265314f9d5048163261a683af8f86d6cd23f..e30b89f19947dd667648b13a86a06c32e86bd79c 100644
|
| --- a/src/core/SkString.cpp
|
| +++ b/src/core/SkString.cpp
|
| @@ -569,7 +569,7 @@ void SkString::appendf(const char format[], ...) {
|
| this->append(buffer, strlen(buffer));
|
| }
|
|
|
| -void SkString::appendf(const char format[], va_list args) {
|
| +void SkString::appendVAList(const char format[], va_list args) {
|
| char buffer[kBufferSize];
|
| VSNPRINTF(buffer, kBufferSize, format, args);
|
|
|
|
|