summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsungwook park <sungwook79.park@samsung.com>2019-09-26 05:18:29 +0000
committerwn.jang <wn.jang@samsung.com>2019-09-26 14:27:10 +0900
commiteaed0f94e85b7b52dc0039fad4245fb3f2fe7788 (patch)
tree3e666d7613a762572c21871ea2680b4a0e187d17
parent8951768b0314375bd4eeeea8747821e2f2958b98 (diff)
downloadstt-tizen_5.5_mobile_hotfix.tar.gz
stt-tizen_5.5_mobile_hotfix.tar.bz2
stt-tizen_5.5_mobile_hotfix.zip
This reverts commit c482162dd98f4b76f870f6c861f6ca2e3f80ebd3. Change-Id: Ib6ff0f45d563b452198e35bb46788c99c28526c8
-rwxr-xr-xinclude/stte.h3
-rwxr-xr-xserver/stte.c2
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");