devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8e48e864aee23540a83524f1fd069c34ded8fd58
commit 8e48e864aee23540a83524f1fd069c34ded8fd58 Author: Chris Michael <[email protected]> Date: Wed Mar 5 14:31:22 2014 +0000 ecore-evas-x: Fix formatting Signed-off-by: Chris Michael <[email protected]> --- src/modules/ecore_evas/engines/x/ecore_evas_x.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/ecore_evas/engines/x/ecore_evas_x.c b/src/modules/ecore_evas/engines/x/ecore_evas_x.c index c6cc9ec..5bd2610 100644 --- a/src/modules/ecore_evas/engines/x/ecore_evas_x.c +++ b/src/modules/ecore_evas/engines/x/ecore_evas_x.c @@ -361,13 +361,14 @@ _ecore_evas_x_aux_hints_supprted_update(Ecore_Evas *ee) (root, ECORE_X_ATOM_E_WINDOW_AUX_HINT_SUPPORTED_LIST, ECORE_X_ATOM_STRING, 0, &data, &n); - if ((res == 8) && (n >0)) + if ((res == 8) && (n > 0)) { str = eina_str_split_full((char *)data, ",", -1, &num); for (i = 0; i < num; i++) { hint = eina_stringshare_add(str[i]); - ee->prop.aux_hint.supported_list = eina_list_append(ee->prop.aux_hint.supported_list, hint); + ee->prop.aux_hint.supported_list = + eina_list_append(ee->prop.aux_hint.supported_list, hint); } if (num > 0) --
