Fix build error by order of initializer 33/272033/1
authorSuyeon Hwang <stom.hwang@samsung.com>
Mon, 7 Mar 2022 07:13:28 +0000 (16:13 +0900)
committerSuyeon Hwang <stom.hwang@samsung.com>
Mon, 7 Mar 2022 07:13:28 +0000 (16:13 +0900)
Change-Id: I9e2f157fe2503af0d09e6f515b3d7083711afa44
Signed-off-by: Suyeon Hwang <stom.hwang@samsung.com>
server/BackgroundVolume.cpp

index 961ae1ec24c0665550c9a670b445499d0488c8d5..564ffdf57c71b20be221961cf3b053ff37eda8d7 100644 (file)
@@ -44,8 +44,8 @@ static void __sound_stream_ducking_state_changed_cb(sound_stream_ducking_h strea
 }
 
 BackgroundVolume::BackgroundVolume(long long int duckingDuration):
-               __duckingDuration(duckingDuration), __postponedRecoverTimer(nullptr), __postponedModifyTimer(nullptr),
-               __mediaStream(nullptr), __notificationStream(nullptr), __alarmStream(nullptr)
+               __duckingDuration(duckingDuration), __mediaStream(nullptr), __notificationStream(nullptr), __alarmStream(nullptr),
+               __postponedRecoverTimer(nullptr), __postponedModifyTimer(nullptr)
 {
        int ret = sound_manager_create_stream_ducking(SOUND_STREAM_TYPE_MEDIA, __sound_stream_ducking_state_changed_cb, nullptr, &__mediaStream);
        if (SOUND_MANAGER_ERROR_NONE != ret)