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

Commit 26c812f0 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

* commit '44d29d4d':
  Fix misc-macro-parentheses warnings in libs/binder.

Change-Id: I4619aac41c494bd01dd5ffa8279853ecf8719709
parents 5abf78e6 44d29d4d
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;                                           \