Change enum type in struct to an int to allow different enum types to
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 22 Apr 2011 17:25:25 +0000 (17:25 +0000)
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 22 Apr 2011 17:25:25 +0000 (17:25 +0000)
be used for the field display type in the struct.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36818 f5534014-38df-0310-8fa8-9805f1628bb7

epan/dissectors/packet-diameter.c

index 3e83d1f3d50bef4e4807cb073e620a2a4b792e86..7f5c809ff8c1854f570b79503cc18c4f775f92a6 100644 (file)
@@ -145,7 +145,7 @@ struct _avp_type_t {
        diam_avp_dissector_t v16;
        diam_avp_dissector_t rfc;
        enum ftenum ft;
-       base_display_e base;
+       int base;
        avp_constructor_t build;
 };