more cleanup up of build files + indentation
diff --git a/aos/common/network/ReceiveSocket.cpp b/aos/common/network/ReceiveSocket.cpp
index 671f966..c754f32 100644
--- a/aos/common/network/ReceiveSocket.cpp
+++ b/aos/common/network/ReceiveSocket.cpp
@@ -19,12 +19,12 @@
return ret;
}
- if (bind(socket_, &addr_.addr,
+ if (bind(socket_, &addr_.addr,
sizeof(addr_)) == -1) {
LOG(ERROR, "failed to bind to address '%s' because of %d: %s\n", localhost,
errno, strerror(errno));
return last_ret_ = -1;
- }
+ }
return last_ret_ = 0;
}