Use TRUE/FALSE for encoding_info to make it build.

Added packet-mndp.c to Makefile build.

svn path=/trunk/; revision=36179
This commit is contained in:
Stig Bjørlykke 2011-03-12 12:09:52 +00:00
parent a8a7de17ea
commit d3cff4643b
2 changed files with 2 additions and 1 deletions

View File

@ -124,6 +124,7 @@ ASN1_DISSECTOR_SRC = \
packet-idmp.c \
packet-logotypecertextn.c \
packet-mms.c \
packet-mndp.c \
packet-mpeg-audio.c \
packet-mpeg-pes.c \
packet-ns_cert_exts.c \

View File

@ -189,7 +189,7 @@ dissect_tlv(tvbuff_t *tvb, packet_info *pinfo, proto_tree *mndp_tree,
&& !value_array[type_index].specialfunction
&& value_array[type_index].evs != NULL
) {
encoding_info = (guint)value_array[type_index].evs;
encoding_info = value_array[type_index].evs ? TRUE : FALSE;
} else {
encoding_info = FALSE;
}