diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2011-04-25 16:19:07 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2011-04-25 16:19:07 +0000 |
commit | ca8dfff3dac689ec88eeaeae0f951977ce56cb84 (patch) | |
tree | 367e65b0b3a97c5b45b9c329da3fa5cce320bac1 /epan/oids.c | |
parent | 678be392f16cda70c04059717022d9b2d100825a (diff) | |
download | wireshark-ca8dfff3dac689ec88eeaeae0f951977ce56cb84.tar.gz wireshark-ca8dfff3dac689ec88eeaeae0f951977ce56cb84.tar.bz2 wireshark-ca8dfff3dac689ec88eeaeae0f951977ce56cb84.zip |
Fix clang error ("increases requird alignment from 1 to 8") by removing
unnecessary VALS() cast
svn path=/trunk/; revision=36847
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 1653b8c458..59ebff629d 100644 --- a/epan/oids.c +++ b/epan/oids.c @@ -690,7 +690,7 @@ static void register_mibs() { } } - hf.hfinfo.strings = VALS(vals->data); + hf.hfinfo.strings = vals->data; g_array_free(vals,FALSE); } #if 0 /* packet-snmp does not handle bits yet */ |