From eaed0f94e85b7b52dc0039fad4245fb3f2fe7788 Mon Sep 17 00:00:00 2001 From: sungwook park Date: Thu, 26 Sep 2019 05:18:29 +0000 Subject: [PATCH] Revert "Add parameter for stte_unset_audio_type_set_cb to fix issue for utc" This reverts commit c482162dd98f4b76f870f6c861f6ca2e3f80ebd3. Change-Id: Ib6ff0f45d563b452198e35bb46788c99c28526c8 --- include/stte.h | 3 +-- server/stte.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/stte.h b/include/stte.h index 6524155..655aebb 100755 --- a/include/stte.h +++ b/include/stte.h @@ -837,7 +837,6 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback_func, void* user_data /** * @brief Unsets a callback function for setting the audio type. * @since_tizen 5.5 -* @param[in] callback_func stte_audio_type_set event callback function * @return @c 0 on success, * otherwise a negative error value * @retval #STTE_ERROR_NONE Successful @@ -846,7 +845,7 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback_func, void* user_data * @pre The stte_main() function should be invoked before this function is called. * @see stte_set_audio_type_set_cb() */ -int stte_unset_audio_type_set_cb(stte_audio_type_cb callback_func); +int stte_unset_audio_type_set_cb(void); #ifdef __cplusplus diff --git a/server/stte.c b/server/stte.c index bcc97c1..04b86ad 100755 --- a/server/stte.c +++ b/server/stte.c @@ -125,7 +125,7 @@ int stte_set_audio_type_set_cb(stte_audio_type_cb callback, void* user_data) return ret; } -int stte_unset_audio_type_set_cb(stte_audio_type_cb callback) +int stte_unset_audio_type_set_cb(void) { SLOG(LOG_INFO, TAG_STTD, "[Server Info] Unset audio type set callback"); -- 2.7.4