aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btavrcp.c
diff options
context:
space:
mode:
authorMichal Labedzki <michal.labedzki@tieto.com>2014-11-07 10:47:33 +0100
committerMichal Labedzki <michal.labedzki@tieto.com>2014-11-14 10:25:56 +0000
commit5a46f2652b27b8a768627239ca75d12b0c62c69a (patch)
treefa18a5f87871f320dd61821eb5cb11d95e58d91f /epan/dissectors/packet-btavrcp.c
parent6e44997584fa1d78a2e0e00f9d5732fd68285197 (diff)
Bluetooth: AVRCP: Fix swappend SongPosition and SongLength
SongPosition and SongLength are swapped in Info column. Fix it. Change-Id: I4c9bece51dbfe62885e8426a8aef07f336670099 Reviewed-on: https://code.wireshark.org/review/5287 Reviewed-by: Michal Labedzki <michal.labedzki@tieto.com>
Diffstat (limited to 'epan/dissectors/packet-btavrcp.c')
-rw-r--r--epan/dissectors/packet-btavrcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-btavrcp.c b/epan/dissectors/packet-btavrcp.c
index ea31ff4887..aafebadb62 100644
--- a/epan/dissectors/packet-btavrcp.c
+++ b/epan/dissectors/packet-btavrcp.c
@@ -1525,7 +1525,7 @@ dissect_vendor_dependant(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
offset += 1;
col_append_fstr(pinfo->cinfo, COL_INFO, " PlayStatus: %s, SongPosition: %ums, SongLength: %ums",
- val_to_str_const(play_status, play_status_vals, "unknown"), song_length, song_position);
+ val_to_str_const(play_status, play_status_vals, "unknown"), song_position, song_length);
}
break;
case PDU_REGISTER_NOTIFICATION: