aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-04-10 21:03:31 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-04-10 21:03:31 +0000
commit5625c461d069f539ac1710efc1c18def0514d4d5 (patch)
tree61a9ad9880dc04338ae09056ba41b214c6b5c606 /capture.c
parent163f2b61a857b93126e1f84f8686555b9121b989 (diff)
bugfix: call to cf_cb_live_capture_..._started with correct parameter
svn path=/trunk/; revision=14045
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture.c b/capture.c
index 3893587ed0..271849be40 100644
--- a/capture.c
+++ b/capture.c
@@ -222,9 +222,9 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
break;
}
- cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts->cf);
+ cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts);
} else {
- cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts->cf);
+ cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts);
}