aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/packet_list_store.c
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-06 12:27:32 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-09-06 12:27:32 +0000
commit0e5a101815c2523919b8b6362e6adad0fe1a2330 (patch)
treead0c1b316a7864f99fed798236cb05017d0c0d34 /gtk/packet_list_store.c
parent571e69fdfaa41c61e64fde06daab8f90a392c115 (diff)
Fix target of assignment not really an lvalue error
svn path=/trunk/; revision=29743
Diffstat (limited to 'gtk/packet_list_store.c')
-rw-r--r--gtk/packet_list_store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/packet_list_store.c b/gtk/packet_list_store.c
index d672b76ceb..81c5d206e3 100644
--- a/gtk/packet_list_store.c
+++ b/gtk/packet_list_store.c
@@ -872,7 +872,7 @@ packet_list_resort(PacketList *packet_list)
if (record->visible_pos >= 0) {
g_assert(record->fdata->flags.passed_dfilter);
neworder[vis_idx] = record->visible_pos;
- PACKET_LIST_RECORD_GET(packet_list->visible_rows, vis_idx) = record;
+ PACKET_LIST_RECORD_SET(packet_list->visible_rows, vis_idx, record);
record->visible_pos = vis_idx;
++vis_idx;
}