From cad16fd3cd122b73156ec559fe4105efd28f597d Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Tue, 5 Apr 2011 17:35:18 +0000 Subject: [PATCH] Ecore_X: XLib: Add missing 'void' in dpms functions. SVN revision: 58366 --- legacy/ecore/src/lib/ecore_x/xlib/ecore_x_dpms.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_dpms.c b/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_dpms.c index 47ffcbff87..75046b7150 100644 --- a/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_dpms.c +++ b/legacy/ecore/src/lib/ecore_x/xlib/ecore_x_dpms.c @@ -141,7 +141,7 @@ ecore_x_dpms_timeouts_set(unsigned int standby, * @ingroup Ecore_X_DPMS_Group */ EAPI unsigned int -ecore_x_dpms_timeout_standby_get() +ecore_x_dpms_timeout_standby_get(void) { #ifdef ECORE_XDPMS unsigned short standby, suspend, off; @@ -161,7 +161,7 @@ ecore_x_dpms_timeout_standby_get() * @ingroup Ecore_X_DPMS_Group */ EAPI unsigned int -ecore_x_dpms_timeout_suspend_get() +ecore_x_dpms_timeout_suspend_get(void) { #ifdef ECORE_XDPMS unsigned short standby, suspend, off; @@ -181,7 +181,7 @@ ecore_x_dpms_timeout_suspend_get() * @ingroup Ecore_X_DPMS_Group */ EAPI unsigned int -ecore_x_dpms_timeout_off_get() +ecore_x_dpms_timeout_off_get(void) { #ifdef ECORE_XDPMS unsigned short standby, suspend, off;