Skip to content
Snippets Groups Projects
Commit f5ac6f6c authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

correct error in doxygen docs

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5417 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c7c20f86
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ struct name { \
This macro initializes a list head structure by setting the head
entry to the supplied value and recreating the embedded lock.
*/
#define AST_LIST_HEAD_SET(head,entry) do { \
#define AST_LIST_HEAD_SET(head, entry) do { \
(head)->first=(entry); \
ast_pthread_mutex_init(&(head)->lock,NULL); \
} while (0)
......@@ -169,7 +169,7 @@ struct { \
...
struct list_entry *current;
...
AST_LIST_TRAVERSE_SAFE_BEGIN(&entries, current, list_entry, list) {
AST_LIST_TRAVERSE_SAFE_BEGIN(&entries, current, list) {
(do something with current here)
}
AST_LIST_TRAVERSE_SAFE_END
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment