diff options
author | 2014-12-05 17:48:53 +0000 | |
---|---|---|
committer | 2014-12-05 17:48:53 +0000 | |
commit | 09b9193d10b3849e426c5370a757a0eedc65a7ff (patch) | |
tree | 6ae1eb107bd6d8f4273b5d8631afecad49728ff9 /libs/ui/GraphicBuffer.cpp | |
parent | 67df03d054f0cc4bd0e47066642b791198e9b0ad (diff) | |
parent | 133caacf87423a738f31b6e1f58d0abcb377058d (diff) |
Merge "Fix -Werror on 64-bit builds"
Diffstat (limited to 'libs/ui/GraphicBuffer.cpp')
-rw-r--r-- | libs/ui/GraphicBuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ui/GraphicBuffer.cpp b/libs/ui/GraphicBuffer.cpp index 825baf4d47..425df389bf 100644 --- a/libs/ui/GraphicBuffer.cpp +++ b/libs/ui/GraphicBuffer.cpp @@ -116,7 +116,7 @@ void GraphicBuffer::free_handle() } status_t GraphicBuffer::initCheck() const { - return mInitCheck; + return static_cast<status_t>(mInitCheck); } void GraphicBuffer::dumpAllocationsToSystemLog() |