From: Andre Date: Fri, 5 Jan 2007 17:51:35 +0000 (+0100) Subject: filter.c: Make config struct and filter_event_handler() static X-Git-Tag: v0.2.15~111 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=6f58bbe94b49c0fb473bffebde598a3d26b051f3;hp=883af7d8af543616fe4ca09b0273dd4f59848779 filter.c: Make config struct and filter_event_handler() static --- diff --git a/filter.c b/filter.c index 0d1c2e24..1bb20b31 100644 --- a/filter.c +++ b/filter.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2006 Andre Noll + * Copyright (C) 2005-2007 Andre Noll * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ static struct filter_chain *fc = &filter_chain_struct; static struct stdout_task stdout_task_struct; static struct stdout_task *sot = &stdout_task_struct; -struct filter_args_info conf; +static struct filter_args_info conf; __printf_2_3 void para_log(int ll, const char* fmt,...) { @@ -51,7 +51,7 @@ __printf_2_3 void para_log(int ll, const char* fmt,...) va_end(argp); } -void filter_event_handler(struct task *t) +static void filter_event_handler(struct task *t) { PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-t->ret)); unregister_task(t); @@ -69,7 +69,6 @@ static void open_filters(void) } } - static int init_filter_chain(void) { int i, filter_num;