summaryrefslogtreecommitdiff
path: root/epan/oids.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-04-25 16:19:07 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-04-25 16:19:07 +0000
commitca8dfff3dac689ec88eeaeae0f951977ce56cb84 (patch)
tree367e65b0b3a97c5b45b9c329da3fa5cce320bac1 /epan/oids.c
parent678be392f16cda70c04059717022d9b2d100825a (diff)
downloadwireshark-ca8dfff3dac689ec88eeaeae0f951977ce56cb84.tar.gz
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.c2
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 */