Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
muxer: Fix the preprocesor directive
  • Loading branch information
perexg committed Sep 18, 2014
1 parent 651d040 commit 4bce3dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/muxer.c
Expand Up @@ -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;
Expand Down

0 comments on commit 4bce3dc

Please sign in to comment.