Skip to content

Commit 75cf9e1

Browse files
committed
Fix the build.
Change-Id: Ibe818df8f360837688f12533cf0ac22ef89a8439
1 parent b96785c commit 75cf9e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

media/java/android/media/AudioService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ public void setMasterMute(boolean state, IBinder cb) {
831831
if (state != AudioSystem.getMasterMute()) {
832832
AudioSystem.setMasterMute(state);
833833
// Post a persist master volume msg
834-
sendMsg(mAudioHandler, MSG_PERSIST_MASTER_VOLUME_MUTE, 0, SENDMSG_REPLACE, state ? 1
834+
sendMsg(mAudioHandler, MSG_PERSIST_MASTER_VOLUME_MUTE, SENDMSG_REPLACE, state ? 1
835835
: 0, 0, null, PERSIST_DELAY);
836836
sendMasterMuteUpdate(state, AudioManager.FLAG_SHOW_UI);
837837
}

0 commit comments

Comments
 (0)