]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove trailing semicolon from #define TOR_ADDR_NULL.
authorLinus Nordberg <linus@torproject.org>
Fri, 31 Aug 2012 21:02:19 +0000 (23:02 +0200)
committerNick Mathewson <nickm@torproject.org>
Tue, 4 Sep 2012 17:05:23 +0000 (13:05 -0400)
Can it ever help? I can only see harm. What am I missing?

src/common/address.h

index c6c126862a7055b0a32a81cd775a4c15b744222a..e0e1ec660699108b1a5342ec36559c9883fc1845 100644 (file)
@@ -40,7 +40,7 @@ typedef struct tor_addr_port_t
   uint16_t port;
 } tor_addr_port_t;
 
-#define TOR_ADDR_NULL {AF_UNSPEC, {0}};
+#define TOR_ADDR_NULL {AF_UNSPEC, {0}}
 
 static INLINE const struct in6_addr *tor_addr_to_in6(const tor_addr_t *a);
 static INLINE uint32_t tor_addr_to_ipv4n(const tor_addr_t *a);