From: compudj Date: Tue, 27 Jan 2004 22:01:21 +0000 (+0000) Subject: warning fix for type X-Git-Tag: v0.12.20~3072 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=162ed57279ee2de6e5a08fb3df30c64b754fc286;hp=1412c37e8fa13f69edf60a4966456bd4072ebe08;p=lttv.git warning fix for type git-svn-id: http://ltt.polymtl.ca/svn@417 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/lttv/modules/gui/mainLib/gtkTraceSet.c b/ltt/branches/poly/lttv/modules/gui/mainLib/gtkTraceSet.c index 4105bf1f..b68e6700 100644 --- a/ltt/branches/poly/lttv/modules/gui/mainLib/gtkTraceSet.c +++ b/ltt/branches/poly/lttv/modules/gui/mainLib/gtkTraceSet.c @@ -665,10 +665,15 @@ void set_hpane_dividor(MainWindow *main_win, gint position) void process_traceset_api(MainWindow *main_win, LttTime start, LttTime end, unsigned maxNumEvents) { - lttv_process_traceset_seek_time(main_win->current_tab->traceset_info-> - traceset_context, start); - lttv_process_traceset(main_win->current_tab->traceset_info-> - traceset_context, end, maxNumEvents); + lttv_process_traceset_seek_time( + LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info-> + traceset_context), + start); + lttv_process_traceset( + LTTV_TRACESET_CONTEXT(main_win->current_tab->traceset_info-> + traceset_context), + end, + maxNumEvents); } /**