masqmail
diff src/libident/id_close.c @ 10:26e34ae9a3e3
changed indention and line wrapping to a more consistent style
author | meillo@marmaro.de |
---|---|
date | Mon, 27 Oct 2008 16:23:10 +0100 |
parents | 08114f7dcc23 |
children |
line diff
1.1 --- a/src/libident/id_close.c Mon Oct 27 16:21:27 2008 +0100 1.2 +++ b/src/libident/id_close.c Mon Oct 27 16:23:10 2008 +0100 1.3 @@ -16,14 +16,13 @@ 1.4 #define IN_LIBIDENT_SRC 1.5 #include "ident.h" 1.6 1.7 -int id_close __P1(ident_t *, id) 1.8 +int 1.9 +id_close __P1(ident_t *, id) 1.10 { 1.11 - int res; 1.12 - 1.13 - res = close(id->fd); 1.14 - free(id); 1.15 - 1.16 - return res; 1.17 + int res; 1.18 + 1.19 + res = close(id->fd); 1.20 + free(id); 1.21 + 1.22 + return res; 1.23 } 1.24 - 1.25 -