aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 18:02:25 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 18:02:25 +0000
commit8e1419d992559a3a989fb50621c3409a437d51e3 (patch)
treeae96823d544dd77a4d2351a000f4289d31799769
parentea0f299abf8f0b86b9573dd4a6221b04efc46865 (diff)
Fix documentation (pointed out by TheDavidFactor on #-dev)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@226304 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/linkedlists.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h
index f99001e7b..a41ba857b 100644
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -408,7 +408,7 @@ struct { \
\brief Checks whether the specified list contains any entries.
\param head This is a pointer to the list head structure
- Returns non-zero if the list has entries, zero if not.
+ Returns zero if the list has entries, non-zero if not.
*/
#define AST_LIST_EMPTY(head) (AST_LIST_FIRST(head) == NULL)