diff options
author | Bill Yi <byi@google.com> | 2015-02-20 00:42:40 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-02-20 00:42:40 +0000 |
commit | 9d19e392f61de3e8cd365afa12d7836bd3721602 (patch) | |
tree | abb184d92cd7bef736a4381200e7bccae70bf772 | |
parent | 0fbad3c813cdd67dcab95f998f1982b2180dc322 (diff) | |
parent | 935b47504411b6ac69f708ba698a72b7282aada1 (diff) | |
download | frameworks_av-9d19e392f61de3e8cd365afa12d7836bd3721602.zip frameworks_av-9d19e392f61de3e8cd365afa12d7836bd3721602.tar.gz frameworks_av-9d19e392f61de3e8cd365afa12d7836bd3721602.tar.bz2 |
am 935b4750: am 011734f0: Fix clang build error
* commit '935b47504411b6ac69f708ba698a72b7282aada1':
Fix clang build error
-rw-r--r-- | media/libstagefright/omx/OMXNodeInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/omx/OMXNodeInstance.cpp b/media/libstagefright/omx/OMXNodeInstance.cpp index bf59460..4779d6a 100644 --- a/media/libstagefright/omx/OMXNodeInstance.cpp +++ b/media/libstagefright/omx/OMXNodeInstance.cpp @@ -158,7 +158,7 @@ static inline const char *portString(OMX_U32 portIndex) { switch (portIndex) { case kPortIndexInput: return "Input"; case kPortIndexOutput: return "Output"; - case ~0: return "All"; + case ~0U: return "All"; default: return "port"; } } |