aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-06 02:06:27 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-06 02:06:27 +0000
commitd83abcc0daa2317c55795f1cc24354d1d1a21b31 (patch)
tree7dec2d77f55864ff41c874e11fc25f967604db54 /include
parent899e2d0fe0e767b9c8b6557e273514efbd4b54da (diff)
correct error in doxygen docs
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5417 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/linkedlists.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h
index de30f4f73..edf3e164e 100755
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -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