do update of rage - fix warning

This commit is contained in:
Carsten Haitzler 2015-04-07 12:33:42 +09:00
parent bfa96f2e08
commit 92079ca855
2 changed files with 4 additions and 4 deletions

View File

@ -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} \

View File

@ -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;
}
}