summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-12-18 10:24:56 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-12-18 10:24:56 -0600
commitfb6aad5301d24a0ae00c8de472f1ae11e13bacfb (patch)
treeed81766ae94ae1e0a4fcc291a67f7c1addb58cd4 /include/asterisk/module.h
parentfe248859614b9163dc9966e5fd641d2703d3e175 (diff)
parent77af356e30ef4ef8cfff5ee7b21e2691699ad2e4 (diff)
Merge "loader: Replace priority heap with vector." into 15
Diffstat (limited to 'include/asterisk/module.h')
-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 6c60429c9..3df924c59 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 */
};