summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-12-18 10:24:43 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-12-18 10:24:43 -0600
commitd6ea23d60e3aba139c6889422a577c1067f66939 (patch)
treee219ecf8e05102b40bf74b7e859b65d38615a3b9 /include
parent232a61006cd5c8ea87973890b9273b174c03e4a6 (diff)
parentd5a7a9852870993b95d1a0070c0c3b08cd57ef15 (diff)
Merge "loader: Replace priority heap with vector." into 13
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index b9d7de64d..66de5c6be 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -69,7 +69,7 @@ enum ast_module_load_result {
AST_MODULE_LOAD_SUCCESS = 0, /*!< Module loaded and configured */
AST_MODULE_LOAD_DECLINE = 1, /*!< Module is not configured */
AST_MODULE_LOAD_SKIP = 2, /*!< Module was skipped for some reason (For loader.c use only. Should never be returned by modules)*/
- AST_MODULE_LOAD_PRIORITY = 3, /*!< Module is not loaded yet, but is added to prioity heap */
+ AST_MODULE_LOAD_PRIORITY = 3, /*!< Module is not loaded yet, but is added to priority list */
AST_MODULE_LOAD_FAILURE = -1, /*!< Module could not be loaded properly */
};