From dff6cd8ba9db1d75bd95ce5d87578c3ce49dd409 Mon Sep 17 00:00:00 2001 From: Ben Schmidt Date: Wed, 29 Feb 2012 15:55:32 +1100 Subject: [PATCH] Fix formatting of the beginning of some functions. --- src/prepstdreply.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/prepstdreply.c b/src/prepstdreply.c index d4762871..c4bb614d 100644 --- a/src/prepstdreply.c +++ b/src/prepstdreply.c @@ -294,7 +294,8 @@ void finish_file_lines(file_lines_state *s) } -static char *filename_token(char *token) { +static char *filename_token(char *token) +{ char *pos; if (*token == '\0') return NULL; for(pos = token; *pos != '\0'; pos++) { @@ -311,7 +312,8 @@ static char *filename_token(char *token) { } -static char *numeric_token(char *token) { +static char *numeric_token(char *token) +{ char *pos; if (*token == '\0') return NULL; for(pos = token; *pos != '\0'; pos++) { @@ -556,7 +558,8 @@ text *open_text(const char *listdir, const char *purpose, const char *action, } -void close_source(text *txt) { +void close_source(text *txt) +{ source *tmp; if (txt->src->fd != -1) close(txt->src->fd); if (txt->src->prefix != NULL) myfree(txt->src->prefix); @@ -1503,7 +1506,8 @@ char *get_processed_text_line(text *txt, int headers, } -void close_text(text *txt) { +void close_text(text *txt) +{ substitution *subst; formatted *fmt; conditional *cond; -- 2.47.3