diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2019-07-28 09:24:40 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2019-07-28 15:27:04 +0200 |
commit | 51fe1b670551e866e5c78083a32b3187d7876bb5 (patch) | |
tree | b5d45cf6999693670c4543c15d6ed37434363231 /apps/menus | |
parent | 45bd14b392622cb58e967a24e4652c510b3d43e4 (diff) |
volume_ismounted is gated by HAVE_DIRCACHE rather than HAVE_MULTIVOLUME
Should fix the various sim builds.
Change-Id: I1dc5e8228698afb32c84ada2aa916e52e19f49d7
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/main_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/main_menu.c b/apps/menus/main_menu.c index 00959d074d..f71632099d 100644 --- a/apps/menus/main_menu.c +++ b/apps/menus/main_menu.c @@ -310,7 +310,7 @@ static int info_speak_item(int selected_item, void * data) if (info->new_data) { volume_size(IF_MV(0,) &info->size, &info->free); -#ifdef HAVE_MULTIVOLUME +#ifdef HAVE_DIRCACHE if (volume_ismounted(1)) volume_size(1, &info->size2, &info->free2); else |