diff options
| author | David Lamparter <equinox@diac24.net> | 2021-02-21 06:38:13 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2021-03-17 06:18:37 +0100 | 
| commit | 96244aca23adec551c29b78f26605f8af8eea53e (patch) | |
| tree | 1f4b4216f3a73e5bddffa2898495a74b2992af0f /lib/routemap.h | |
| parent | 8451921b70044a2c1075e7ba391f095fabee2550 (diff) | |
*: require semicolon after DEFINE_QOBJ & co.
Again, see previous commits.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/routemap.h')
| -rw-r--r-- | lib/routemap.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/routemap.h b/lib/routemap.h index 2d5d3a1f90..bad3ca6d3d 100644 --- a/lib/routemap.h +++ b/lib/routemap.h @@ -190,9 +190,9 @@ struct route_map_index {  	/* List of match/sets contexts. */  	TAILQ_HEAD(, routemap_hook_context) rhclist; -	QOBJ_FIELDS +	QOBJ_FIELDS;  }; -DECLARE_QOBJ_TYPE(route_map_index) +DECLARE_QOBJ_TYPE(route_map_index);  /* Route map list structure. */  struct route_map { @@ -225,9 +225,9 @@ struct route_map {  	struct route_table *ipv4_prefix_table;  	struct route_table *ipv6_prefix_table; -	QOBJ_FIELDS +	QOBJ_FIELDS;  }; -DECLARE_QOBJ_TYPE(route_map) +DECLARE_QOBJ_TYPE(route_map);  /* Prototypes. */  extern void route_map_init(void);  | 
