aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-11 17:34:30 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-11 17:34:30 +0000
commitf9980e7f7cb05f2e6f95d0cdde8cb853ef5756d1 (patch)
treeb4f7d56dc6c4dca246072a682969e85f07d0de1f /include
parentf0ef34826c9accbfbf3d2e0cc52a5b2ff537d7ec (diff)
Use the linkedlists.h AST_LIST_NEXT macro for modifying the list of results.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@74616 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-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 */