commit | fc0b1da4eda489deff77ade415b78178772ab9b3 | [log] [tgz] |
---|---|---|
author | Sean Paul <seanpaul@chromium.org> | Wed Mar 06 09:48:42 2019 -0500 |
committer | Sean Paul <seanpaul@chromium.org> | Mon Mar 18 14:28:45 2019 +0000 |
tree | f74b8e40c95b6aa6ae7c8f0d8e6277e12b23f57b | |
parent | 890988f3f60e8d8367e9613270af20ff46bf8e93 [diff] [blame] |
drm_hwcomposer: Change return type of DrmProperty::value() to tuple To keep consistent with other functions Change-Id: I11ba07eabcee08f3db09b3a5422bc480482a62c1 Signed-off-by: Sean Paul <seanpaul@chromium.org>
diff --git a/drmplane.cpp b/drmplane.cpp index 35f91b4..6f1bf9b 100644 --- a/drmplane.cpp +++ b/drmplane.cpp
@@ -42,7 +42,7 @@ } uint64_t type; - ret = p.value(&type); + std::tie(ret, type) = p.value(); if (ret) { ALOGE("Failed to get plane type property value"); return ret;