summaryrefslogtreecommitdiff
path: root/formats/format_g726.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_g726.c')
-rw-r--r--formats/format_g726.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/formats/format_g726.c b/formats/format_g726.c
index 09504bf6c..ffaaa367c 100644
--- a/formats/format_g726.c
+++ b/formats/format_g726.c
@@ -255,10 +255,10 @@ static int load_module(void)
for (i = 0; f[i].format ; i++) {
if (ast_format_register(&f[i])) { /* errors are fatal */
ast_log(LOG_WARNING, "Failed to register format %s.\n", f[i].name);
- return -1;
+ return AST_MODULE_LOAD_FAILURE;
}
}
- return 0;
+ return AST_MODULE_LOAD_SUCCESS;
}
static int unload_module(void)