Fix uninitialized variable warning

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-06-15 21:32:29 +01:00
parent 1daf85faa5
commit 30225fa74e
1 changed files with 1 additions and 1 deletions

View File

@ -7589,7 +7589,7 @@ _e_fm2_cb_icon_mouse_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNU
(e_config->drag_resist * e_config->drag_resist))
{
E_Drag *d;
Evas_Object *o, *o2, *layout = NULL;
Evas_Object *o = NULL, *o2, *layout = NULL;
const char *drag_types[] = { "text/uri-list" }, *real_path;
char buf[PATH_MAX + 8], *p, *sel = NULL;
E_Container *con = NULL;