diff options
author | Anders Broman <anders.broman@ericsson.com> | 2014-01-06 17:12:54 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2014-01-06 17:12:54 +0000 |
commit | 9c05ac141dbae1950858550a0633ba38797a37bf (patch) | |
tree | c45ebd3076f875fc23b61682c81e97fbedadb9dd /epan/oids.c | |
parent | ef399fb652c0be3b2bd85b7bdab73cd2286ec74f (diff) | |
download | wireshark-9c05ac141dbae1950858550a0633ba38797a37bf.tar.gz wireshark-9c05ac141dbae1950858550a0633ba38797a37bf.tar.bz2 wireshark-9c05ac141dbae1950858550a0633ba38797a37bf.zip |
Fix a typo.
svn path=/trunk/; revision=54617
Diffstat (limited to 'epan/oids.c')
-rw-r--r-- | epan/oids.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/oids.c b/epan/oids.c index a11a378bf9..a1c88a4858 100644 --- a/epan/oids.c +++ b/epan/oids.c @@ -703,7 +703,7 @@ static void register_mibs(void) { for(; key; key = key->next) { hf_register_info hf; - hf.p_id = &(key->hfid; + hf.p_id = &(key->hfid); hf.hfinfo.name = key->name; hf.hfinfo.abbrev = alnumerize(key->name); hf.hfinfo.type = key->ft_type; |