From: Hwankyu Jhun Date: Mon, 28 Aug 2023 01:21:59 +0000 (+0900) Subject: Remove build warning message X-Git-Tag: accepted/tizen/unified/20230829.181400~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c30b7798dfc159cfa2e8a8f66ba78fed4fcea15;p=platform%2Fcore%2Fappfw%2Frpc-port.git Remove build warning message - Removes unused variable Change-Id: I9a50268f0f7e0b4b73825204b704175fe712254d Signed-off-by: Hwankyu Jhun --- diff --git a/src/cynara_thread.cc b/src/cynara_thread.cc index fb86761..9e84564 100644 --- a/src/cynara_thread.cc +++ b/src/cynara_thread.cc @@ -49,7 +49,8 @@ void CynaraThread::ThreadRun() { Job job = queue_.WaitAndPop(); if (finished_) return; - Job::Type ret = job.Do(); + + job.Do(); } }