summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger_client
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2011-01-27 11:24:33 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-27 11:24:33 -0800
commit830423f7970aa270ebc4cd276e02a92a959d8931 (patch)
tree8c35787cebe5509028b7dbf03ce11fcaf90de694 /libs/surfaceflinger_client
parent5ac971625c01ce1bc18f678e8587c0f212251c79 (diff)
parentad2b78fa12b2b2f25aa9f2faeb872bd91f1420bc (diff)
downloadframeworks_native-830423f7970aa270ebc4cd276e02a92a959d8931.zip
frameworks_native-830423f7970aa270ebc4cd276e02a92a959d8931.tar.gz
frameworks_native-830423f7970aa270ebc4cd276e02a92a959d8931.tar.bz2
am 72abf01a: Merge "Fix the ISurfaceComposer onTransact switch." into gingerbread
* commit '72abf01a8b6958ac1f86d36302a8462c4f51fd9d': Fix the ISurfaceComposer onTransact switch.
Diffstat (limited to 'libs/surfaceflinger_client')
-rw-r--r--libs/surfaceflinger_client/ISurfaceComposer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaceflinger_client/ISurfaceComposer.cpp b/libs/surfaceflinger_client/ISurfaceComposer.cpp
index 2216824..01ae23f 100644
--- a/libs/surfaceflinger_client/ISurfaceComposer.cpp
+++ b/libs/surfaceflinger_client/ISurfaceComposer.cpp
@@ -266,13 +266,13 @@ status_t BnSurfaceComposer::onTransact(
int32_t mode = data.readInt32();
status_t res = turnElectronBeamOff(mode);
reply->writeInt32(res);
- }
+ } break;
case TURN_ELECTRON_BEAM_ON: {
CHECK_INTERFACE(ISurfaceComposer, data, reply);
int32_t mode = data.readInt32();
status_t res = turnElectronBeamOn(mode);
reply->writeInt32(res);
- }
+ } break;
default:
return BBinder::onTransact(code, data, reply, flags);
}