diff options
author | Bill Yi <byi@google.com> | 2015-02-19 16:21:41 -0800 |
---|---|---|
committer | Bill Yi <byi@google.com> | 2015-02-19 16:21:41 -0800 |
commit | 011734f0ce7e8b2e3066f90ef51c323ee7d4dea2 (patch) | |
tree | 178008ade1454c946ff580585f864b56ac070be7 | |
parent | 1f9b6745d7c88dac2bfd19d583c3d98b361f67b3 (diff) | |
download | frameworks_av-011734f0ce7e8b2e3066f90ef51c323ee7d4dea2.zip frameworks_av-011734f0ce7e8b2e3066f90ef51c323ee7d4dea2.tar.gz frameworks_av-011734f0ce7e8b2e3066f90ef51c323ee7d4dea2.tar.bz2 |
Fix clang build error
Change-Id: I294903dcf3ce3aa6a3b2f50364067e701a33d327
-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 c04d95f..ab7419f 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"; } } |