diff options
| author | 2022-04-20 19:59:03 +0000 | |
|---|---|---|
| committer | 2022-04-20 19:59:03 +0000 | |
| commit | 3356367c8fd4fae3fdcc3188d1aefb080be939e1 (patch) | |
| tree | 6e5cd93a018e81569da70dbac140d717c4010214 /libs | |
| parent | c8c333259715252d81c3c4c28cdf64fd3c148b7b (diff) | |
| parent | 0acc384bb994f7f8bbe9f4060d0b1b212744879f (diff) | |
Merge changes from topics "presubmit-am-55f310f6061a4fdfa7811f47f62b8b5c", "presubmit-am-f6a0ce426c734db58ba765fa00f5f38c" into tm-dev
* changes:
SF: Add dumpsys flags to dump displays
SF: Clean up display lookup
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/ui/DeviceProductInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/DeviceProductInfo.cpp b/libs/ui/DeviceProductInfo.cpp index 4d6ce4306a..04d9d3c989 100644 --- a/libs/ui/DeviceProductInfo.cpp +++ b/libs/ui/DeviceProductInfo.cpp @@ -57,7 +57,7 @@ status_t DeviceProductInfo::unflatten(void const* buffer, size_t size) { } void DeviceProductInfo::dump(std::string& result) const { - StringAppendF(&result, "{name=%s, ", name.c_str()); + StringAppendF(&result, "{name=\"%s\", ", name.c_str()); StringAppendF(&result, "manufacturerPnpId=%s, ", manufacturerPnpId.data()); StringAppendF(&result, "productId=%s, ", productId.c_str()); |