From 0727364db125c155d045e9fd636a67ad9dc8e3bb Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 30 Jul 2012 10:26:05 +0000 Subject: [PATCH] fix unused warns when no mount backends enabled SVN revision: 74575 --- src/bin/e_fm/e_fm_main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bin/e_fm/e_fm_main.c b/src/bin/e_fm/e_fm_main.c index 075e81c6b..817410c8d 100644 --- a/src/bin/e_fm/e_fm_main.c +++ b/src/bin/e_fm/e_fm_main.c @@ -237,6 +237,7 @@ e_volume_mount(E_Volume *v) #endif default: printf("raster can't mount disks by himself!\n"); + (void)v; } } @@ -263,6 +264,7 @@ e_volume_unmount(E_Volume *v) #endif default: printf("raster can't unmount disks by himself!\n"); + (void)v; } } @@ -288,6 +290,7 @@ e_volume_eject(E_Volume *v) #endif default: printf("raster can't eject disks by himself!\n"); + (void)v; } } @@ -310,6 +313,7 @@ e_volume_find(const char *udi) #endif default: printf("raster can't find disks by himself!\n"); + (void)udi; } return NULL; } @@ -336,6 +340,7 @@ e_storage_del(const char *udi) #endif default: printf("raster can't delete disks by himself!\n"); + (void)udi; } } @@ -358,6 +363,7 @@ e_storage_find(const char *udi) #endif default: printf("raster can't find disks by himself!\n"); + (void)udi; } return NULL; }