aboutsummaryrefslogtreecommitdiffstats
path: root/reordercap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-03-20 01:18:10 +0000
committerBill Meier <wmeier@newsguy.com>2013-03-20 01:18:10 +0000
commit0df5a9390d41149dfc87440d72e7669ba96748ec (patch)
tree8accf4dfc301adfc679ed7f21b7123cb4b2c55f9 /reordercap.c
parenta43e5a7eb9fe1ad5a89e7cfd556a791a50fefee7 (diff)
From beroset:
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachment #10397 svn path=/trunk/; revision=48438
Diffstat (limited to 'reordercap.c')
-rw-r--r--reordercap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/reordercap.c b/reordercap.c
index 75894eec64..7bd0c8962d 100644
--- a/reordercap.c
+++ b/reordercap.c
@@ -240,7 +240,7 @@ int main(int argc, char *argv[])
/* Write out each sorted frame in turn */
for (i = 0; i < frames->len; i++) {
- FrameRecord_t *frame = frames->pdata[i];
+ FrameRecord_t *frame = (FrameRecord_t *)frames->pdata[i];
/* Avoid writing if already sorted and configured to */
if (write_output_regardless || (wrong_order_count > 0)) {