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

Commit a8fb1c95 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix misc-macro-parentheses warnings in libs/binder." am: 44d29d4d am:...

Merge "Fix misc-macro-parentheses warnings in libs/binder." am: 44d29d4d am: 26c812f0 am: 81ace2ff
am: 0617bf2c

* commit '0617bf2c':
  Fix misc-macro-parentheses warnings in libs/binder.

Change-Id: I0845ab4cd285e014ea1bd5f5057291f76efd042d
parents 6de1c53c 0617bf2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ namespace os {

#define RETURN_IF_ENTRY_ERASED(map, key)                                 \
    {                                                                    \
        size_t num_erased = map.erase(key);                              \
        size_t num_erased = (map).erase(key);                            \
        if (num_erased) {                                                \
            ALOGE("Failed at %s:%d (%s)", __FILE__, __LINE__, __func__); \
            return num_erased;                                           \