aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/linkedlists.h
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-16 22:53:56 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-16 22:53:56 +0000
commit17f5af7b6ffa79239610a9525eed823de139ede4 (patch)
tree96a23cc3c725bc957fdcc163bd8327dda712a8b6 /include/asterisk/linkedlists.h
parent683ec6ed21d908966ea38db70f5fd42eb742590d (diff)
Bug 6515 - extra semicolon
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@10338 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 6cd1f50fe..49dd3a10d 100644
--- a/include/asterisk/linkedlists.h
+++ b/include/asterisk/linkedlists.h
@@ -139,7 +139,7 @@ struct name { \
struct type *first; \
struct type *last; \
ast_mutex_t lock; \
-} name = AST_LIST_HEAD_INIT_VALUE;
+} name = AST_LIST_HEAD_INIT_VALUE
/*!
\brief Defines a structure to be used to hold a list of specified type, statically initialized.
@@ -150,7 +150,7 @@ struct name { \
struct name { \
struct type *first; \
struct type *last; \
-} name = AST_LIST_HEAD_NOLOCK_INIT_VALUE;
+} name = AST_LIST_HEAD_NOLOCK_INIT_VALUE
/*!
\brief Initializes a list head structure with a specified first entry.