spa: remove semicolon at end of SPA_LIST_INIT

This commit is contained in:
Peter Hutterer 2021-05-27 15:04:04 +10:00 committed by Wim Taymans
parent c58498bd92
commit 98353560da

View file

@ -39,7 +39,7 @@ struct spa_list {
struct spa_list *prev; struct spa_list *prev;
}; };
#define SPA_LIST_INIT(list) (struct spa_list){ list, list }; #define SPA_LIST_INIT(list) (struct spa_list){ list, list }
static inline void spa_list_init(struct spa_list *list) static inline void spa_list_init(struct spa_list *list)
{ {