This fixes a rare compile error and the "Don't keep" cache policy not
working.
Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
case MC_CACHE_DONTKEEP:
#if defined(PLATFORM_DARWIN)
fcntl(fd, F_NOCACHE, 1);
-#elif !defined(ENABLE_ANDROID)
+#elif !ENABLE_ANDROID
posix_fadvise(fd, pos, size, POSIX_FADV_DONTNEED);
#endif
break;
int nframes = backtrace(frames, MAXFRAMES);
Dl_info dli;
#endif
-#if defined(NGREG) || defined(ENABLE_EXECINFO)
+#if defined(NGREG) || ENABLE_EXECINFO
int i;
#endif
const char *reason = NULL;