diff --git a/configure.ac b/configure.ac index 61d22dd..ae04aa7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT([rage], [0.1.0], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([rage], [0.1.1], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.60]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_MACRO_DIR([m4]) @@ -16,7 +16,7 @@ AC_PROG_CC AM_PROG_CC_C_O AC_C___ATTRIBUTE__ -efl_version="1.11.0" +efl_version="1.13.0" requirements="\ elementary >= ${efl_version} \ edje >= ${efl_version} \ diff --git a/src/bin/win.c b/src/bin/win.c index b7870a4..733a1d5 100644 --- a/src/bin/win.c +++ b/src/bin/win.c @@ -267,7 +267,7 @@ win_video_delete(Evas_Object *win) Eina_List *l, *l_next; Winvid_Entry *vid; - int direction = NULL; // -1 prev, 1 next + int direction = 0; // -1 prev, 1 next if (!inf->file_list) return; @@ -284,7 +284,7 @@ win_video_delete(Evas_Object *win) if (vid->uri) efreet_uri_free(vid->uri); free(vid); inf->file_list = eina_list_remove_list(inf->file_list, l); - direction = (l_next == NULL ? -1 : 1); + direction = (l_next == 0 ? -1 : 1); break; } }