Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a902ae9 authored by Yabin Cui's avatar Yabin Cui Committed by Android Git Automerger
Browse files

am ad450e63: am c8ad1809: Merge "kill HAVE_MADVISE"

* commit 'ad450e63':
  kill HAVE_MADVISE
parents cc1be852 ad450e63
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ try_again:
// Provide guidance to the system.
int FileMap::advise(MapAdvice advice)
{
#if HAVE_MADVISE
#if !defined(_WIN32)
    int cc, sysAdvice;

    switch (advice) {
@@ -216,5 +216,5 @@ int FileMap::advise(MapAdvice advice)
    return cc;
#else
    return -1;
#endif // HAVE_MADVISE
#endif
}