summaryrefslogtreecommitdiff
path: root/ui/gtk/voip_calls_dlg.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-21 23:07:33 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-21 23:07:33 +0000
commitc702e92121ec5477ecc25a87b00bf478b42c1dc7 (patch)
tree962e68606a5718b59153d14ee28c319eb29a904b /ui/gtk/voip_calls_dlg.c
parent74b6c5949957411e5ce95e5e4b1a34997cf31b09 (diff)
downloadwireshark-c702e92121ec5477ecc25a87b00bf478b42c1dc7.tar.gz
Replace relative timestamp with reference frame number. Saves 16B per frame.
svn path=/trunk/; revision=50772
Diffstat (limited to 'ui/gtk/voip_calls_dlg.c')
-rw-r--r--ui/gtk/voip_calls_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/voip_calls_dlg.c b/ui/gtk/voip_calls_dlg.c
index 690c70a55d..8f5b617b53 100644
--- a/ui/gtk/voip_calls_dlg.c
+++ b/ui/gtk/voip_calls_dlg.c
@@ -477,8 +477,8 @@ add_to_list_store(voip_calls_info_t* strinfo)
/* Fill the new row */
gtk_list_store_set(list_store, &list_iter,
- CALL_COL_START_TIME, nstime_to_sec(&strinfo->start_fd->rel_ts),
- CALL_COL_STOP_TIME, nstime_to_sec(&strinfo->stop_fd->rel_ts),
+ CALL_COL_START_TIME, nstime_to_sec(&strinfo->start_rel_ts),
+ CALL_COL_STOP_TIME, nstime_to_sec(&strinfo->stop_rel_ts),
CALL_COL_INITIAL_SPEAKER, &field[CALL_COL_INITIAL_SPEAKER][0],
CALL_COL_FROM, &field[CALL_COL_FROM][0],
CALL_COL_TO, &field[CALL_COL_TO][0],