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

Commit a82b5f57 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

Merge "libstagefright: use __predict_false from bionic rather than CONDITION from log/log.h"

parents 43e10bb7 79d661f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@
#include "include/ESDS.h"

#define WARN_UNLESS(condition, message, ...) \
( (CONDITION(condition)) ? false : ({ \
( (__predict_false(condition)) ? false : ({ \
    ALOGW("Condition %s failed "  message, #condition, ##__VA_ARGS__); \
    true; \
}))