diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-22 22:38:26 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2012-12-22 22:38:26 +0100 |
commit | c7bb19c55c7a902e25bdd33b0d49a2ddcf62e07a (patch) | |
tree | b3a75ef2719bc2f334041460fd21fbdf86a23a82 /compat/socket.h | |
parent | d336cd6b429f8ce40c58ea287f79bbc7c23d0966 (diff) |
update C coding style to a more commonly used style
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1873 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'compat/socket.h')
-rw-r--r-- | compat/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/socket.h b/compat/socket.h index 9e44b95..7f69950 100644 --- a/compat/socket.h +++ b/compat/socket.h @@ -28,7 +28,7 @@ /* provide a definition for SUN_LEN for systems without it */ #ifndef SUN_LEN -#define SUN_LEN(addr) (sizeof((addr)->sun_family)+strlen((addr)->sun_path)+1) +#define SUN_LEN(addr) (sizeof((addr)->sun_family) + strlen((addr)->sun_path) + 1) #endif /* not SUN_LEN */ #endif /* not COMPAT__SOCKET_H */ |