Commit 4ca5d689 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by android-build-merger
Browse files

Merge "Fix misc-macro-parentheses warnings."

am: 8f8ed7f3

* commit '8f8ed7f3':
  Fix misc-macro-parentheses warnings.

Change-Id: I16a1cd31d9558f5f35c3ccf34b49cd4af43f69b9
parents e44c3373 8f8ed7f3
......@@ -125,7 +125,7 @@ void ensure_keystore_engine() {
* we've transferred ownership, without triggering a warning by not using the
* result of release(). */
#define OWNERSHIP_TRANSFERRED(obj) \
typeof (obj.release()) _dummy __attribute__((unused)) = obj.release()
typeof ((obj).release()) _dummy __attribute__((unused)) = (obj).release()
const char* rsa_get_key_id(const RSA* rsa) {
return reinterpret_cast<char*>(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment