summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-17 07:59:14 (GMT)
commitd508d00919dccbc9dd5d3c86508f2db7a7c753a7 (patch)
tree141cdfbf0908146bab12636e5b270e59ea06b3a5 /Modules/socketmodule.c
parentabf275af5804c5f76fbe10c5cb1dd3d2e4b04c5b (diff)
parent6d57fe1c23430d0d51de243a177670b76c37dab5 (diff)
downloadcpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.zip
cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.gz
cpython-d508d00919dccbc9dd5d3c86508f2db7a7c753a7.tar.bz2
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index e87f790..d25bd7f 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -2061,12 +2061,13 @@ getsockaddrlen(PySocketSockObject *s, socklen_t *len_ret)
return 1;
}
#endif /* AF_UNIX */
+
#if defined(AF_NETLINK)
- case AF_NETLINK:
- {
- *len_ret = sizeof (struct sockaddr_nl);
- return 1;
- }
+ case AF_NETLINK:
+ {
+ *len_ret = sizeof (struct sockaddr_nl);
+ return 1;
+ }
#endif
#ifdef AF_RDS