From 633b06dcfea9c798dccf24429c94a6b1187fc645 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Thu, 13 Jun 2024 07:17:01 -0400 Subject: [Bugfix] tagcache.c reverse conditional for native targets Change-Id: Icad11d2182586a1401bc46053273207a1283c73e --- apps/tagcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/tagcache.c') diff --git a/apps/tagcache.c b/apps/tagcache.c index 9463d7c865..49df99254d 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -4991,7 +4991,7 @@ void do_tagcache_build(const char *path[]) roots_ll[0].path = path[0]; roots_ll[0].next = NULL; -#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && !defined(PLATFORM_NATIVE) +#if defined(HAVE_MULTIVOLUME) && !defined(SIMULATOR) && !defined(__PCTOOL__) && defined(PLATFORM_NATIVE) extern bool ns_volume_is_visible(int volume); /*rb_namespace.c*/ /* i is for the path vector, j for the roots_ll array */ int i = 1, j = 1; -- cgit v1.2.3