tools: drop unused field in struct

check_seapp at one point in time switch from a home implementation
of a hash table to using GLIBC search.h routines. A struct in one
of the fields was never removed during this transition.

Change-Id: I65c028103ffe90fa52e0b3c9fce28124ed9c7ff9
This commit is contained in:
William Roberts 2013-10-15 08:58:51 -07:00
parent 14138335bd
commit d1f1070acb

View File

@ -102,7 +102,6 @@ struct rule_map {
char *key; /** key value before hashing */
int length; /** length of the key map */
int lineno; /** Line number rule was encounter on */
rule_map *next; /** next pointer used in hash table for chaining on collision */
key_map m[]; /** key value mapping */
};