fix unused warns when no mount backends enabled

SVN revision: 74575
This commit is contained in:
Mike Blumenkrantz 2012-07-30 10:26:05 +00:00
parent 9cd4903a9c
commit 0727364db1
1 changed files with 6 additions and 0 deletions

View File

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