From 9ebf69069ca37e401a243216de744a5ca3785817 Mon Sep 17 00:00:00 2001 From: "wn.jang" Date: Tue, 5 Jul 2022 13:43:02 +0900 Subject: [PATCH] Remove unreachable codes Change-Id: I355058d68d6a2f850ab346dd4e934cad3d85ff9f --- client/stt.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/stt.c b/client/stt.c index d6fbafb..a9aaf36 100644 --- a/client/stt.c +++ b/client/stt.c @@ -982,12 +982,8 @@ static Eina_Bool __stt_connect_daemon(void *data) /* Send hello */ ret = stt_dbus_request_hello(client->uid); - if (0 != ret) { - if (STT_ERROR_INVALID_STATE == ret) { - g_connect_timer = NULL; - return EINA_FALSE; - } + SLOG(LOG_ERROR, TAG_STTC, "[ERROR] Fail to send hello, ret(0x%x)", ret); return EINA_TRUE; } -- 2.7.4