From 3f7bf360461938b3051378e8dbcc45e9c6c07939 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Sat, 21 Mar 2015 16:38:47 -0400 Subject: [PATCH] ecore-drm: Fix build error caused by missing function declaration Summary: This is mainly just a build fix. This issue occurred due to the function declaration being After a call to use it while not having a function prototype. This just adds the function prototype @fix Signed-off-by: Chris Michael --- src/lib/ecore_drm/ecore_drm_output.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ecore_drm/ecore_drm_output.c b/src/lib/ecore_drm/ecore_drm_output.c index 6c3e121..f10b5a2 100644 --- a/src/lib/ecore_drm/ecore_drm_output.c +++ b/src/lib/ecore_drm/ecore_drm_output.c @@ -25,6 +25,7 @@ static const char *conn_types[] = EAPI int ECORE_DRM_EVENT_OUTPUT = 0; /* local functions */ +static void _ecore_drm_output_event(const char *device, Eeze_Udev_Event event EINA_UNUSED, void *data, Eeze_Udev_Watch *watch EINA_UNUSED); static void _ecore_drm_output_edid_parse_string(const uint8_t *data, char text[]) -- 2.7.4