aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_map.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2012-06-04 10:02:08 +0000
committerPascal Quantin <pascal.quantin@gmail.com>2012-06-04 10:02:08 +0000
commitf275aeadd9963378921eeaa1c15065ceab86a263 (patch)
tree0c4a6dbd998a641cf32199be282f30fdf3319860 /epan/dissectors/packet-gsm_map.c
parent85972d91c7373426ccd9eeb0ab03085719edd66f (diff)
Fix 'lvalue required as left operand of assignment' error when compiling with gcc 4.3.2
svn path=/trunk/; revision=43059
Diffstat (limited to 'epan/dissectors/packet-gsm_map.c')
-rw-r--r--epan/dissectors/packet-gsm_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-gsm_map.c b/epan/dissectors/packet-gsm_map.c
index e7f9a83dd1..85befa1cda 100644
--- a/epan/dissectors/packet-gsm_map.c
+++ b/epan/dissectors/packet-gsm_map.c
@@ -3236,7 +3236,7 @@ dissect_gsm_map_SignalInfo(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int off
offset = dissect_ber_octet_string(implicit_tag, actx, tree, tvb, offset, hf_index,
&parameter_tvb);
- (tvbuff_t*)actx->value_ptr = parameter_tvb;
+ actx->value_ptr = (void*)parameter_tvb;