summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-07-22 17:35:28 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-07-22 17:35:28 +0000
commit213a926bd9bf4617e97813bca455604e57e6c543 (patch)
tree45ff1eb5b60ae63a563645510e7be41c990fc9d4 /file.c
parent69e79617ef23d30761d722405def5bd61b3bb357 (diff)
downloadwireshark-213a926bd9bf4617e97813bca455604e57e6c543.tar.gz
From kovarththanan Rajaratnam:
Pass column_info as a pointer (new packet list). svn path=/trunk/; revision=29169
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index c2d78274e2..715ea75039 100644
--- a/file.c
+++ b/file.c
@@ -1111,7 +1111,7 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf,
* in the following function when not using the new packet list. */
fdata->color_filter = color_filters_colorize_packet(0, edt);
- row = new_packet_list_append(cf->cinfo, fdata);
+ row = new_packet_list_append(&cf->cinfo, fdata);
#else
row = packet_list_append(cf->cinfo.col_data, fdata);