aboutsummaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-04-06 16:05:10 +0200
committerPetr Machata <pmachata@redhat.com>2012-04-19 01:38:00 +0200
commit8b00d5bb6a0925ece06aad0d9df0a85e8dbd7b57 (patch)
tree47f3b0d6d4c25255b45807ab4ffcc4d4649c6753 /options.c
parent052b5f191ec00b7677c43278cb2ce886af1d0ef1 (diff)
downloadltrace-8b00d5bb6a0925ece06aad0d9df0a85e8dbd7b57.tar.gz
Drop leftover fprintf's
- convert some to debug or error calls
Diffstat (limited to 'options.c')
-rw-r--r--options.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/options.c b/options.c
index 06757db..521dd42 100644
--- a/options.c
+++ b/options.c
@@ -179,9 +179,6 @@ add_filter_rule(struct filter *filt, const char *expr,
const char *sym, int sym_re_p,
const char *lib, int lib_re_p)
{
- fprintf(stderr, "add_filter_rule, type = %d\n", type);
- fprintf(stderr, "+ symname = %s (re=%d)\n", sym, sym_re_p);
- fprintf(stderr, "+ libname = %s (re=%d)\n", lib, lib_re_p);
struct filter_rule *rule = malloc(sizeof(*rule));
struct filter_lib_matcher *matcher = malloc(sizeof(*matcher));
@@ -229,8 +226,6 @@ add_filter_rule(struct filter *filt, const char *expr,
static int
parse_filter(struct filter *filt, char *expr)
{
- fprintf(stderr, "filter '%s'\n", expr);
-
/* Filter is a chain of sym@lib rules separated by '-'. If
* the filter expression starts with '-', the missing initial
* rule is implicitly *@*. */