From 8f61e2b9788dcb3bf57e9b89fdb2d3da778d7011 Mon Sep 17 00:00:00 2001 From: Gregor Richards Date: Tue, 29 Nov 2016 21:16:04 -0500 Subject: [PATCH] Spacing correction (three spaces, not four) --- libretro-common/include/net/net_natt.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/libretro-common/include/net/net_natt.h b/libretro-common/include/net/net_natt.h index a4bbd29f00..f50f6fa45f 100644 --- a/libretro-common/include/net/net_natt.h +++ b/libretro-common/include/net/net_natt.h @@ -27,25 +27,25 @@ #include struct natt_status { - /** The fdset to be selected upon to check for responses */ - fd_set fds; + /** The fdset to be selected upon to check for responses */ + fd_set fds; - /** True if we've resolved an external IPv4 address */ - bool have_inet4; + /** True if we've resolved an external IPv4 address */ + bool have_inet4; - /** External IPv4 address */ - struct sockaddr_in ext_inet4_addr; + /** External IPv4 address */ + struct sockaddr_in ext_inet4_addr; - /** True if we've resolved an external IPv6 address */ - bool have_inet6; + /** True if we've resolved an external IPv6 address */ + bool have_inet6; #ifdef AF_INET6 - /** External IPv6 address */ - struct sockaddr_in6 ext_inet6_addr; + /** External IPv6 address */ + struct sockaddr_in6 ext_inet6_addr; #endif - /** Internal status (currently unused) */ - void *internal; + /** Internal status (currently unused) */ + void *internal; }; /**