From 861102b4372cadef3d7ee9a03fe46bdbdcf37565 Mon Sep 17 00:00:00 2001 From: Nan Xiao Date: Mon, 31 Jul 2017 13:02:20 +0800 Subject: [PATCH] Remove redundant semicolon --- src/cc/export/helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/export/helpers.h b/src/cc/export/helpers.h index bbc393ab..c9ad1439 100644 --- a/src/cc/export/helpers.h +++ b/src/cc/export/helpers.h @@ -57,7 +57,7 @@ __attribute__((section("maps/" _table_type))) \ struct _name##_table_t _name = { .flags = (_flags) } #define BPF_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries) \ -BPF_F_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries, 0); +BPF_F_TABLE(_table_type, _key_type, _leaf_type, _name, _max_entries, 0) // define a table same as above but allow it to be referenced by other modules #define BPF_TABLE_PUBLIC(_table_type, _key_type, _leaf_type, _name, _max_entries) \ -- 2.34.1