From 6f58bbe94b49c0fb473bffebde598a3d26b051f3 Mon Sep 17 00:00:00 2001 From: Andre Date: Fri, 5 Jan 2007 18:51:35 +0100 Subject: [PATCH] filter.c: Make config struct and filter_event_handler() static --- filter.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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; -- 2.30.2