fec.c is external so leaving it as it is.

Changed log output to 'log_warn'.
This commit is contained in:
Jose Angel Gariburo
2017-10-26 08:29:04 +02:00
parent c8fb35cf53
commit 3d2ec1bdf2
2 changed files with 6 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ int delay_manager_t::add(my_time_t delay,const dest_t &dest,char *data,int len)
tmp.data=(char *)malloc(delay_data.len+100);
if(!tmp.data)
{
mylog(log_trace, "malloc() returned null in delay_manager_t::add()");
mylog(log_warn, "malloc() returned null in delay_manager_t::add()");
return -1;
}
memcpy(tmp.data,data,delay_data.len);