summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-05-16 16:59:05 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-05-16 20:47:48 +0900
commit64b90fd22e537994745b0cc4df05691286283fa4 (patch)
tree9808050090abc15db63f1c62970362d442806aef
parent83d1162171ec07c4d326f0bf07c7438327459a33 (diff)
downloadefl-64b90fd22e537994745b0cc4df05691286283fa4.tar.gz
ecore_x: Fix build warning (invalid enum used)
-rw-r--r--src/lib/ecore_x/ecore_x_e.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_x/ecore_x_e.c b/src/lib/ecore_x/ecore_x_e.c
index a879970a4f..28645ad6f1 100644
--- a/src/lib/ecore_x/ecore_x_e.c
+++ b/src/lib/ecore_x/ecore_x_e.c
@@ -2455,7 +2455,7 @@ ecore_x_e_stack_position_get(Ecore_X_Window win)
unsigned int val;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
- EINA_SAFETY_ON_NULL_RETURN_VAL(_ecore_x_disp, ECORE_X_STACK_NONE);
+ EINA_SAFETY_ON_NULL_RETURN_VAL(_ecore_x_disp, ECORE_X_STACK_POSITION_NONE);
ret = ecore_x_window_prop_card32_get(win, ECORE_X_ATOM_E_STACK_POSITION,
&val, 1);