Fix -Werror on 64-bit builds

Add another static_cast to avoid an error on 64-bit builds

Change-Id: I62fb2c67766c4aab70d9d1834f255d06ff82dd8d
(cherry picked from commit 116c7a113c)
This commit is contained in:
Dan Stoza 2014-12-01 15:15:31 -08:00 committed by Dan Albert
parent 42af278173
commit 133caacf87
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ void GraphicBuffer::free_handle()
}
status_t GraphicBuffer::initCheck() const {
return mInitCheck;
return static_cast<status_t>(mInitCheck);
}
void GraphicBuffer::dumpAllocationsToSystemLog()