binder: Change clang-format style to Google
Changing the clang-format style to be based off Google style to
remove some of the weird C++ formatting issues.
Change-Id: I91f03ec9a2fa612a4c6fe89c8ed4cf93a12764c7
diff --git a/wpa_supplicant/binder/iface.cpp b/wpa_supplicant/binder/iface.cpp
index cd4be06..0ff407a 100644
--- a/wpa_supplicant/binder/iface.cpp
+++ b/wpa_supplicant/binder/iface.cpp
@@ -12,16 +12,16 @@
namespace wpa_supplicant_binder {
-#define RETURN_IF_IFACE_INVALID(wpa_s) \
- { \
- if (!wpa_s) { \
- return android::binder::Status:: \
- fromServiceSpecificError( \
- ERROR_IFACE_INVALID, "wpa_supplicant does " \
- "not control this " \
- "interface."); \
- } \
- } // #define RETURN_IF_IFACE_INVALID(wpa_s)
+#define RETURN_IF_IFACE_INVALID(wpa_s) \
+ { \
+ if (!wpa_s) { \
+ return android::binder::Status:: \
+ fromServiceSpecificError( \
+ ERROR_IFACE_INVALID, \
+ "wpa_supplicant does not control this " \
+ "interface."); \
+ } \
+ } // #define RETURN_IF_IFACE_INVALID(wpa_s)
Iface::Iface(struct wpa_global *wpa_global, const char ifname[])
: wpa_global_(wpa_global), ifname_(ifname)
@@ -175,4 +175,4 @@
return wpa_supplicant_get_iface(
(struct wpa_global *)wpa_global_, ifname_.c_str());
}
-} // namespace wpa_supplicant_binder
+} // namespace wpa_supplicant_binder