diff options
author | 2023-03-23 19:33:59 +0000 | |
---|---|---|
committer | 2023-03-23 19:33:59 +0000 | |
commit | 9bbcd6e11ef15a87ad0a01c834e9e0b6fbca571a (patch) | |
tree | 5f3e93f2453b44f3f41cdd0a68068edde3dcb592 /libs/hwui/Properties.cpp | |
parent | c3eb73ba1221ce72871bf722b8c25ff0c1302fd0 (diff) | |
parent | 70ee564e2e4989617da838e1c5094c02440dc3fe (diff) |
Merge "Fix hwui compile error"
Diffstat (limited to 'libs/hwui/Properties.cpp')
-rw-r--r-- | libs/hwui/Properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index 5a67eb9935dd..738f1ab0c18f 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -98,7 +98,7 @@ bool Properties::load() { debugOverdraw = false; std::string debugOverdrawProperty = base::GetProperty(PROPERTY_DEBUG_OVERDRAW, ""); if (debugOverdrawProperty != "") { - INIT_LOGD(" Overdraw debug enabled: %s", debugOverdrawProperty); + INIT_LOGD(" Overdraw debug enabled: %s", debugOverdrawProperty.c_str()); if (debugOverdrawProperty == "show") { debugOverdraw = true; overdrawColorSet = OverdrawColorSet::Default; |