2
0
Fork 0

remove cast to time_t in CUR_TS() makro. it caused some deviation

This commit is contained in:
Thomas Porzelt 2008-11-12 02:11:43 +01:00
parent d56e5c2ea9
commit a2a0818cb4
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ struct statistics_t {
ev_tstamp last_update;
};
#define CUR_TS(wrk) ((time_t)ev_now((wrk)->loop))
#define CUR_TS(wrk) ev_now((wrk)->loop)
/* only locks if there is more than one worker */
#define WORKER_LOCK(srv, lock) \