Skip to content

Commit

Permalink
uac: error message made warning for loading uac api
Browse files Browse the repository at this point in the history
- some modules have optional use of uac
  • Loading branch information
miconda committed Feb 6, 2019
1 parent fb2ac63 commit e545309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/uac/api.h
Expand Up @@ -38,7 +38,7 @@ int bind_uac(uac_api_t*);
inline static int load_uac_api(uac_api_t *uacb){
bind_uac_f bind_uac_exports;
if(!(bind_uac_exports=(bind_uac_f)find_export("bind_uac",1,0))){
LM_ERR("Failed to import bind_uac\n");
LM_WARN("failed to import bind_uac\n");
return -1;
}
return bind_uac_exports(uacb);
Expand Down

0 comments on commit e545309

Please sign in to comment.