diff options
| author | David Lamparter <equinox@diac24.net> | 2021-02-21 06:54:16 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:39 +0100 | 
| commit | 960b9a53837d1aefa16bd531c7087f800dbe147b (patch) | |
| tree | 0b007330e6ed75d4e8674063a360b646d895d282 /vtysh/vtysh_config.c | |
| parent | 96244aca23adec551c29b78f26605f8af8eea53e (diff) | |
*: require semicolon after DEFINE_<typesafe...>
Again, see previous commits.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'vtysh/vtysh_config.c')
| -rw-r--r-- | vtysh/vtysh_config.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c index 0c98ad5335..498d3e5f67 100644 --- a/vtysh/vtysh_config.c +++ b/vtysh/vtysh_config.c @@ -91,9 +91,9 @@ static uint32_t config_hash(const struct config *c)  	return string_hash_make(c->name);  } -DECLARE_LIST(config_master, struct config, rbt_item) +DECLARE_LIST(config_master, struct config, rbt_item);  DECLARE_HASH(config_master_hash, struct config, hash_item, config_cmp, -	     config_hash) +	     config_hash);  /*   * The config_master_head is a list for order of receipt  | 
