aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ber.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-13 06:22:43 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2007-06-13 06:22:43 +0000
commitf48ac5a9a53be2f99cc20e675b050e200412a883 (patch)
treef02dd2b7f9d15e47003cc42311d5c7d560dfe3bb /epan/dissectors/packet-ber.c
parentfe66f75a90cf673dad247322db398acab3dcc8a7 (diff)
Get the Unix buildbots going again
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22086 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ber.c')
-rw-r--r--epan/dissectors/packet-ber.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ber.c b/epan/dissectors/packet-ber.c
index 22dbab1b15..f407019423 100644
--- a/epan/dissectors/packet-ber.c
+++ b/epan/dissectors/packet-ber.c
@@ -1228,7 +1228,7 @@ dissect_ber_boolean(gboolean implicit_tag, asn1_ctx_t *actx, proto_tree *tree, t
/* 8.5 Encoding of a real value */
/* NOT FULLY IMPLEMENTED !!!!!*/
int
-dissect_ber_real(gboolean implicit_tag, asn1_ctx_t *actx, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id, double *value)
+dissect_ber_real(gboolean implicit_tag, asn1_ctx_t *actx, proto_tree *tree, tvbuff_t *tvb, int offset, gint hf_id _U_, double *value)
{
gint8 class;
gboolean pc;
@@ -1248,7 +1248,7 @@ dissect_ber_real(gboolean implicit_tag, asn1_ctx_t *actx, proto_tree *tree, tvbu
/* 8.5.2 If the real value is the value zero,
* there shall be no contents octets in the encoding.
*/
- if (len=0){
+ if (len==0){
if (value)
*value = 0;
return offset;