From: Nan Xiao Date: Mon, 31 Jul 2017 05:02:20 +0000 (+0800) Subject: Remove redundant semicolon X-Git-Tag: submit/tizen_4.0/20171018.110122~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=861102b4372cadef3d7ee9a03fe46bdbdcf37565;p=platform%2Fupstream%2Fbcc.git Remove redundant semicolon --- 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) \