diff options
| author | 2018-12-13 03:36:58 +0000 | |
|---|---|---|
| committer | 2018-12-13 03:36:58 +0000 | |
| commit | fdb668331ad85605ef728b1882d7c3cec227917c (patch) | |
| tree | ceab520d486fe928594b4438e37c733a74d83cb9 /libs/gui/ISurfaceComposer.cpp | |
| parent | cd41f1a67585d429cf4207bbaee0dd4dc1772f9b (diff) | |
| parent | aa3da6a25800089b1472075f6c4f5b1e8883bc94 (diff) | |
Merge "[ISurfaceComposer] Fix wrong returned value."
Diffstat (limited to 'libs/gui/ISurfaceComposer.cpp')
| -rw-r--r-- | libs/gui/ISurfaceComposer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/ISurfaceComposer.cpp b/libs/gui/ISurfaceComposer.cpp index f1fefcc14b..bd943c120e 100644 --- a/libs/gui/ISurfaceComposer.cpp +++ b/libs/gui/ISurfaceComposer.cpp @@ -1033,7 +1033,7 @@ status_t BnSurfaceComposer::onTransact( reply->writeInt32(static_cast<int32_t>(defaultDataspace)); reply->writeInt32(static_cast<int32_t>(defaultPixelFormat)); reply->writeInt32(static_cast<int32_t>(wideColorGamutDataspace)); - reply->writeInt32(static_cast<int32_t>(wideColorGamutDataspace)); + reply->writeInt32(static_cast<int32_t>(wideColorGamutPixelFormat)); } return NO_ERROR; } |