diff options
author | Lajos Molnar <lajos@google.com> | 2014-03-07 02:32:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-03-07 02:32:25 +0000 |
commit | 2338782d18d9bcc8197c63dbf205332a2a737440 (patch) | |
tree | 9c3e2776df597444edfe3f5cfd52818b3f1c50ec | |
parent | ad21a81af3e7d6b58002c9dce9c3278b6323e4a9 (diff) | |
parent | b2be2f2e41d5502d79636b21cbad23f4f983bbd7 (diff) | |
download | frameworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.zip frameworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.tar.gz frameworks_av-2338782d18d9bcc8197c63dbf205332a2a737440.tar.bz2 |
Merge "Fixed misplaced bracket for switch-case block." into klp-dev
-rw-r--r-- | media/libstagefright/ACodec.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media/libstagefright/ACodec.cpp b/media/libstagefright/ACodec.cpp index 5d5220f..bc4e89b 100644 --- a/media/libstagefright/ACodec.cpp +++ b/media/libstagefright/ACodec.cpp @@ -3247,11 +3247,11 @@ void ACodec::BaseState::onInputBufferFilled(const sp<AMessage> &msg) { mCodec->mInputEOSResult = err; } break; - - default: - CHECK_EQ((int)mode, (int)FREE_BUFFERS); - break; } + + default: + CHECK_EQ((int)mode, (int)FREE_BUFFERS); + break; } } |