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

Commit c8ad1809 authored by Yabin Cui's avatar Yabin Cui Committed by Gerrit Code Review
Browse files

Merge "kill HAVE_MADVISE"

parents 0655d38b 819b480b
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
}