aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-05-02 19:18:08 +0000
committerBill Meier <wmeier@newsguy.com>2008-05-02 19:18:08 +0000
commit36121319b052c4509826e449218d653c6b666fa6 (patch)
tree82e3861833d8f5c28b6ff9dd6d1cd31dc7cc53b7
parenta8cb768921f3fc71afe8634427ad7a6ee8fdc533 (diff)
Fix (what I presume to be) a typo to prevent compile error.
svn path=/trunk/; revision=25219
-rw-r--r--epan/dissectors/packet-umts_fp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index f53df81dba..bb2ffa4c85 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -1446,7 +1446,7 @@ void dissect_usch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
guint8 extra_bits = tvb_get_guint8(tvb, offset) & 0x03;
proto_item_append_text(rx_timing_deviation_ti,
" (extended to %u)",
- (tx_timing_deviation << 2) | extra_bits);
+ (rx_timing_deviation << 2) | extra_bits);
}
offset++;
}