aboutsummaryrefslogtreecommitdiff
path: root/util/system/debug_dump.cc
diff options
context:
space:
mode:
Diffstat (limited to 'util/system/debug_dump.cc')
-rw-r--r--util/system/debug_dump.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/debug_dump.cc b/util/system/debug_dump.cc
index 8583ce5d..85cbc7a0 100644
--- a/util/system/debug_dump.cc
+++ b/util/system/debug_dump.cc
@@ -25,11 +25,11 @@ namespace chre {
void DebugDumpWrapper::print(const char *formatStr, ...) {
va_list argList;
va_start(argList, formatStr);
- printVaList(formatStr, argList);
+ print(formatStr, argList);
va_end(argList);
}
-void DebugDumpWrapper::printVaList(const char *formatStr, va_list argList) {
+void DebugDumpWrapper::print(const char *formatStr, va_list argList) {
va_list argListCopy;
va_copy(argListCopy, argList);