From 28b441c4ef3c4971b18962f0a7e4e30804b51332 Mon Sep 17 00:00:00 2001 From: wangqingsong21 Date: Wed, 27 Aug 2025 09:41:57 +0800 Subject: [PATCH] bugfix:code format in AudioManagerProxy::SetActiveOutputDevice Signed-off-by: wangqingsong21 --- services/audio_service/client/src/audio_manager_proxy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/audio_service/client/src/audio_manager_proxy.cpp b/services/audio_service/client/src/audio_manager_proxy.cpp index a1cb7e0573..3c84db9aca 100644 --- a/services/audio_service/client/src/audio_manager_proxy.cpp +++ b/services/audio_service/client/src/audio_manager_proxy.cpp @@ -829,7 +829,7 @@ void AudioManagerProxy::SetActiveOutputDevice(DeviceType deviceType) error = Remote()->SendRequest( static_cast(AudioServerInterfaceCode::SET_ACTIVE_OUTPUT_DEVICE), dataParcel, replyParcel, option); - CHECK_AND_RETURN_LOG(error == ERR_NONE, "SetActiveOutputDevice failed, error: %{public}d", error); + CHECK_AND_RETURN_LOG(error == ERR_NONE, "SetActiveOutputDevice failed, error: %{public}d", error); return; } -- Gitee