[Asterisk-cvs] asterisk/include/asterisk linkedlists.h,1.10,1.11

kpfleming at lists.digium.com kpfleming at lists.digium.com
Tue Apr 5 21:13:45 CDT 2005


Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv11313/include/asterisk

Modified Files:
	linkedlists.h 
Log Message:
correct error in doxygen docs


Index: linkedlists.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/linkedlists.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- linkedlists.h	21 Mar 2005 04:18:50 -0000	1.10
+++ linkedlists.h	6 Apr 2005 02:06:27 -0000	1.11
@@ -61,7 +61,7 @@
   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 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




More information about the svn-commits mailing list