summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2023-08-17 01:45:36 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-08-17 01:45:36 +0000
commit5c47132cc9943ca5a50254de3f320577472c76aa (patch)
tree4b8714bb8258712cbd671234df532a647bb6b329
parentf17b203166dbcf6f66b7d7583e776d8e7b0b891c (diff)
parent42d5ad98aac1e578ddf52bec64502b85bf8c8a9d (diff)
downloadrs-5c47132cc9943ca5a50254de3f320577472c76aa.tar.gz
Merge "Use String8/16 c_str" into main
-rw-r--r--rsDebugHelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsDebugHelper.h b/rsDebugHelper.h
index 82aa3142..54510848 100644
--- a/rsDebugHelper.h
+++ b/rsDebugHelper.h
@@ -38,7 +38,7 @@ public:
void dump() {
#if !defined(RS_VENDOR_LIB) && !defined(RS_COMPATIBILITY_LIB)
- ALOGV("%s", mStack.toString().string());
+ ALOGV("%s", mStack.toString().c_str());
//mStack.dump();
#endif
}