diff options
Diffstat (limited to 'hugin_filter.c')
-rw-r--r-- | hugin_filter.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hugin_filter.c b/hugin_filter.c index dfd541f..f817145 100644 --- a/hugin_filter.c +++ b/hugin_filter.c @@ -30,8 +30,8 @@ #include <string.h> #include <stdlib.h> -#ifndef WITH_DBG_FILTER -#warning hugin_filter.c compiled but WITH_DBG_FILTER not defined +#ifndef WITH_HUG_FILTER +#warning hugin_filter.c compiled but WITH_HUG_FILTER not defined #endif #define NELEM(x) (sizeof(x)/sizeof((x)[0])) @@ -49,7 +49,7 @@ static unsigned n_debug_channel = 0; // Default is to enable everything... static unsigned debug_flags = 0xffffffff;//(1<<__class_err)|(1<<__class_fixme); -int dbg_filter_enabled(const enum __debug_class cl, const char *ch) +int hug_filter_enabled(const enum __debug_class cl, const char *ch) { unsigned i; for(i = 0; i < n_debug_channel; i++) { @@ -66,7 +66,7 @@ int dbg_filter_enabled(const enum __debug_class cl, const char *ch) * | class[+-]channel * | [+-]all */ -int dbg_filter_parse(const char *filter) +int hug_filter_parse(const char *filter) { char *s; char *next; |