From f275aeadd9963378921eeaa1c15065ceab86a263 Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Mon, 4 Jun 2012 10:02:08 +0000 Subject: Fix 'lvalue required as left operand of assignment' error when compiling with gcc 4.3.2 svn path=/trunk/; revision=43059 --- epan/dissectors/packet-gsm_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-gsm_map.c') 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, ¶meter_tvb); - (tvbuff_t*)actx->value_ptr = parameter_tvb; + actx->value_ptr = (void*)parameter_tvb; -- cgit v1.2.3