aboutsummaryrefslogtreecommitdiffstats
path: root/epan/diam_dict.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
committerMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
commit86d690880fb63891d223aa663ca5901c790b74af (patch)
tree47187c5da15e3c239e9bf40c79601c196ac0f114 /epan/diam_dict.h
parentd36b4c8525161167a32eac3b1feb98f8f5d6184e (diff)
replace "unsigned" datatype with "guint". Some mpeg files needed "unsigned int" instead.
bugs 7825-7827 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7825) svn path=/trunk/; revision=46928
Diffstat (limited to 'epan/diam_dict.h')
-rw-r--r--epan/diam_dict.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/diam_dict.h b/epan/diam_dict.h
index 6840ae01b0..9f0a4f601e 100644
--- a/epan/diam_dict.h
+++ b/epan/diam_dict.h
@@ -27,7 +27,7 @@
struct _ddict_namecode_t {
char* name;
- unsigned code;
+ guint code;
struct _ddict_namecode_t* next;
};
@@ -38,7 +38,7 @@ typedef struct _ddict_namecode_t ddict_application_t;
typedef struct _ddict_vendor_t {
char* name;
char* desc;
- unsigned code;
+ guint code;
struct _ddict_vendor_t* next;
} ddict_vendor_t;
@@ -47,7 +47,7 @@ typedef struct _ddict_avp_t {
char* description;
char* vendor;
char* type;
- unsigned code;
+ guint code;
ddict_gavp_t* gavps;
ddict_enum_t* enums;
struct _ddict_avp_t* next;
@@ -62,7 +62,7 @@ typedef struct _ddict_typedefn_t {
typedef struct _ddict_cmd_t {
char* name;
char* vendor;
- unsigned code;
+ guint code;
struct _ddict_cmd_t* next;
} ddict_cmd_t;