aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/linkedlists.h
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 18:04:05 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-28 18:04:05 +0000
commit9a96bab484e972d65607ee395a594033128cf0f2 (patch)
tree551166c8a6ef474f1d3ce4ee69c69e0b8c2e9142 /include/asterisk/linkedlists.h
parentaf2ffb8cf5e1dd10900944eab84c32ec22a7e670 (diff)
Merged revisions 226304 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r226304 | tilghman | 2009-10-28 13:02:25 -0500 (Wed, 28 Oct 2009) | 2 lines Fix documentation (pointed out by TheDavidFactor on #-dev) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@226305 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/linkedlists.h')
-rw-r--r--include/asterisk/linkedlists.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h
index 1ee524301..82db0924c 100644
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -443,8 +443,8 @@ struct { \
* \brief Checks whether the specified list contains any entries.
* \param head This is a pointer to the list head structure
*
- * \return non-zero if the list has entries
- * \return zero if not.
+ * \return zero if the list has entries
+ * \return non-zero if not.
*/
#define AST_LIST_EMPTY(head) (AST_LIST_FIRST(head) == NULL)