From 4b96a55694f975a5e7307059c03df382d296d76b Mon Sep 17 00:00:00 2001 From: Junseok Kim Date: Thu, 25 Jan 2024 17:48:44 +0900 Subject: [PATCH] e_client_video: fix build break during module build There was a build break that could not find tdm_helper_dump_start/stop during module build. It occured because the module was indirectly reference that functions. Change-Id: I3c3386725892b439a86ac0d546fa3298562f02da TODO: include directly the header and remove including tdm_helper header from e_client_video --- src/include/e_client_video.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/e_client_video.h b/src/include/e_client_video.h index 25f0844..f3b7806 100644 --- a/src/include/e_client_video.h +++ b/src/include/e_client_video.h @@ -2,6 +2,7 @@ #define E_CLIENT_VIDEO_H #include +#include // FIXME: should be removed after module has to be included directly E_API Eina_Bool e_client_video_set(E_Client *ec); E_API void e_client_video_unset(E_Client *ec); -- 2.7.4