diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2009-10-07 08:37:18 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2009-10-07 08:37:18 +0000 |
commit | 5bc9611d56c0921e04eab2000e0b020569356e8c (patch) | |
tree | a03045426a7a51ba3a1eaa89b6990033a4354f9f /epan/proto.c | |
parent | b7d8cd1c6a405b789a025774815fae599f70e452 (diff) | |
download | wireshark-5bc9611d56c0921e04eab2000e0b020569356e8c.tar.gz wireshark-5bc9611d56c0921e04eab2000e0b020569356e8c.tar.bz2 wireshark-5bc9611d56c0921e04eab2000e0b020569356e8c.zip |
Removed a redundant prototype.
Made wrs_count_bitshift static.
svn path=/trunk/; revision=30387
Diffstat (limited to 'epan/proto.c')
-rw-r--r-- | epan/proto.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/proto.c b/epan/proto.c index 744a6efb0c..6e02cbdfd2 100644 --- a/epan/proto.c +++ b/epan/proto.c @@ -72,7 +72,7 @@ struct ptvcursor { }; /* Candidates for assembler */ -int +static int wrs_count_bitshift(guint32 bitmask) { int bitshift = 0; @@ -143,7 +143,6 @@ static void fill_label_bitfield(field_info *fi, gchar *label_str); static void fill_label_int(field_info *fi, gchar *label_str); static void fill_label_int64(field_info *fi, gchar *label_str); -int hfinfo_bitwidth(header_field_info *hfinfo); static const char* hfinfo_uint_vals_format(header_field_info *hfinfo); static const char* hfinfo_uint_format(header_field_info *hfinfo); static const char* hfinfo_uint_value_format(header_field_info *hfinfo); |