Skip to content

Commit

Permalink
fec.c is external so leaving it as it is.
Browse files Browse the repository at this point in the history
Changed log output to 'log_warn'.
  • Loading branch information
Carmot committed Oct 26, 2017
1 parent c8fb35c commit 3d2ec1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion delay_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
10 changes: 5 additions & 5 deletions lib/fec.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
#include <stdlib.h>
#include <string.h>

typedef unsigned long u_dword;
typedef unsigned long u_long;
/*
* compatibility stuff
*/
Expand Down Expand Up @@ -75,7 +75,7 @@ struct timeval {
};
#define gettimeofday(x, dummy) { (x)->ticks = clock() ; }
#define DIFF_T(a,b) (1+ 1000000*(a.ticks - b.ticks) / CLOCKS_PER_SEC )
typedef unsigned long u_dword ;
typedef unsigned long u_long ;
typedef unsigned short u_short ;
#else /* typically, unix systems */
#include <sys/time.h>
Expand All @@ -89,12 +89,12 @@ typedef unsigned short u_short ;
t = x.tv_usec + 1000000* (x.tv_sec & 0xff ) ; \
}
#define TOCK(t) \
{ u_dword t1 ; TICK(t1) ; \
{ u_long t1 ; TICK(t1) ; \
if (t1 < t) t = 256000000 + t1 - t ; \
else t = t1 - t ; \
if (t == 0) t = 1 ;}

u_dword ticks[10]; /* vars for timekeeping */
u_long ticks[10]; /* vars for timekeeping */
#else
#define DEB(x)
#define DDB(x)
Expand Down Expand Up @@ -640,7 +640,7 @@ init_fec()
#define FEC_MAGIC 0xFECC0DEC

struct fec_parms {
u_dword magic ;
u_long magic ;
int k, n ; /* parameters of the code */
gf *enc_matrix ;
} ;
Expand Down

0 comments on commit 3d2ec1b

Please sign in to comment.