diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h index 6cd1f50feba1ee7c62977113b2ef0b0c9588e92f..49dd3a10dc56454d486eabd8d3f91128ad3ebcdc 100644 --- a/include/asterisk/linkedlists.h +++ b/include/asterisk/linkedlists.h @@ -139,7 +139,7 @@ struct name { \ struct type *first; \ struct type *last; \ ast_mutex_t lock; \ -} name = AST_LIST_HEAD_INIT_VALUE; +} name = AST_LIST_HEAD_INIT_VALUE /*! \brief Defines a structure to be used to hold a list of specified type, statically initialized. @@ -150,7 +150,7 @@ struct name { \ struct name { \ struct type *first; \ struct type *last; \ -} name = AST_LIST_HEAD_NOLOCK_INIT_VALUE; +} name = AST_LIST_HEAD_NOLOCK_INIT_VALUE /*! \brief Initializes a list head structure with a specified first entry.