From: Chris Michael Date: Sat, 21 Mar 2015 20:38:47 +0000 (-0400) Subject: ecore-drm: Fix build error caused by missing function declaration X-Git-Tag: v1.14.0-alpha1~145 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f7bf360461938b3051378e8dbcc45e9c6c07939;p=platform%2Fupstream%2Fefl.git 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 --- 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[])