diff options
author | Andrea Shepard <andrea@torproject.org> | 2016-06-12 21:47:14 +0000 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2016-06-12 21:47:14 +0000 |
commit | 925f76b486444217035d1cc978cbdd398c17dfb1 (patch) | |
tree | 6c21190d1be0e10131149bfe99d18a7f6d4f4f80 /src/common/address.h | |
parent | 0616fd6fb6db5385eac6b432892c90fbb38f8666 (diff) | |
download | tor-925f76b486444217035d1cc978cbdd398c17dfb1.tar.gz tor-925f76b486444217035d1cc978cbdd398c17dfb1.zip |
Keep make check-spaces happy
Diffstat (limited to 'src/common/address.h')
-rw-r--r-- | src/common/address.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/common/address.h b/src/common/address.h index 3f0bb521cd..51db42c315 100644 --- a/src/common/address.h +++ b/src/common/address.h @@ -74,7 +74,8 @@ typedef struct tor_addr_port_t #define TOR_ADDR_NULL {AF_UNSPEC, {0}} static inline const struct in6_addr *tor_addr_to_in6(const tor_addr_t *a); -static inline const struct in6_addr *tor_addr_to_in6_assert(const tor_addr_t *a); +static inline const struct in6_addr *tor_addr_to_in6_assert( + const tor_addr_t *a); static inline uint32_t tor_addr_to_ipv4n(const tor_addr_t *a); static inline uint32_t tor_addr_to_ipv4h(const tor_addr_t *a); static inline uint32_t tor_addr_to_mapped_ipv4h(const tor_addr_t *a); @@ -98,7 +99,8 @@ tor_addr_to_in6(const tor_addr_t *a) return a->family == AF_INET6 ? &a->addr.in6_addr : NULL; } -/** As tor_addr_to_in6, but assert that the address truly is an IPv6 address. */ +/** As tor_addr_to_in6, but assert that the address truly is an IPv6 + * address. */ static inline const struct in6_addr * tor_addr_to_in6_assert(const tor_addr_t *a) { |