From 162ed57279ee2de6e5a08fb3df30c64b754fc286 Mon Sep 17 00:00:00 2001 From: compudj Date: Tue, 27 Jan 2004 22:01:21 +0000 Subject: [PATCH] warning fix for type git-svn-id: http://ltt.polymtl.ca/svn@417 04897980-b3bd-0310-b5e0-8ef037075253 --- .../poly/lttv/modules/gui/mainLib/gtkTraceSet.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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); } /** -- 2.34.1