summaryrefslogtreecommitdiff
path: root/include/asterisk/speech.h
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-07-11 17:34:30 +0000
committerJoshua Colp <jcolp@digium.com>2007-07-11 17:34:30 +0000
commit7e015109a2d551b819d21a025933a6dc4d77cf40 (patch)
treeb4f7d56dc6c4dca246072a682969e85f07d0de1f /include/asterisk/speech.h
parent2d3f9ce25b77693dcc4c28cb7e6bd24b14593276 (diff)
Use the linkedlists.h AST_LIST_NEXT macro for modifying the list of results.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74616 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/speech.h')
-rw-r--r--include/asterisk/speech.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/speech.h b/include/asterisk/speech.h
index 81b45a761..02d056f33 100644
--- a/include/asterisk/speech.h
+++ b/include/asterisk/speech.h
@@ -110,7 +110,7 @@ struct ast_speech_result {
/*! Matched grammar */
char *grammar;
/*! List information */
- struct ast_speech_result *next;
+ AST_LIST_ENTRY(ast_speech_result) list;
};
/*! \brief Activate a grammar on a speech structure */