E_FM: Fix uninitialized variables in e_fm.c. Fix Unused variable in

e_fm_device.c



SVN revision: 73872
This commit is contained in:
Christopher Michael 2012-07-15 11:17:45 +00:00
parent ebec5c34c6
commit d0ceff8feb
2 changed files with 2 additions and 2 deletions

View File

@ -9390,7 +9390,7 @@ _e_fm2_file_delete(Evas_Object *obj)
E_Fm2_Icon *ic;
char text[4096 + 256];
Eina_List *sel;
int n, folder_count;
int n = 0, folder_count = 0;
man = e_manager_current_get();
if (!man) return;

View File

@ -19,7 +19,7 @@ _e_fm2_device_volume_setup(E_Volume *v)
char label[1024] = {0};
char *size = NULL;
const char *icon = NULL;
unsigned long long sz;
/* unsigned long long sz; */
/* Compute the size in a readable form */
if (v->size)