muxer: Fix the preprocesor directive

This commit is contained in:
Jaroslav Kysela 2014-09-18 17:26:47 +02:00
parent 651d0404bd
commit 4bce3dc4ae

View file

@ -460,7 +460,7 @@ muxer_cache_update(muxer_t *m, int fd, off_t pos, size_t size)
case MC_CACHE_DONTKEEP:
#if defined(PLATFORM_DARWIN)
fcntl(fd, F_NOCACHE, 1);
#elseif !ENABLE_ANDROID
#elif !defined(ENABLE_ANDROID)
posix_fadvise(fd, pos, size, POSIX_FADV_DONTNEED);
#endif
break;