From: Ben Schmidt Date: Wed, 29 Feb 2012 04:55:32 +0000 (+1100) Subject: Fix formatting of the beginning of some functions. X-Git-Tag: RELEASE_1_2_18a1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff6cd8ba9db1d75bd95ce5d87578c3ce49dd409;p=thirdparty%2Fmlmmj.git Fix formatting of the beginning of some functions. --- 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;