[Tizen] Fix RenderThreadId bug 34/286034/1 accepted/tizen/7.0/unified/20221228.170442
authorEunki, Hong <eunkiki.hong@samsung.com>
Mon, 26 Dec 2022 11:47:22 +0000 (20:47 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Mon, 26 Dec 2022 11:47:22 +0000 (20:47 +0900)
Change-Id: Iff748c3f754c24531bbc8257651788975ddec183
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/adaptor/common/adaptor-impl.cpp

index ce0039f..ddc8ccd 100644 (file)
@@ -1138,7 +1138,7 @@ int32_t Adaptor::GetRenderThreadId() const
 {
   if(mThreadController)
   {
-    mThreadController->GetThreadId();
+    return mThreadController->GetThreadId();
   }
   return 0;
 }