compose_flow_removed() already has the current time conveniently provided
as a parameter, so there is no need to call time_msec() directly.
Also squashes an annoying GCC warning about an unused parameter.
{
struct ofp_flow_removed *ofr;
struct ofpbuf *buf;
- long long int tdiff = time_msec() - rule->created;
+ long long int tdiff = now - rule->created;
uint32_t sec = tdiff / 1000;
uint32_t msec = tdiff - (sec * 1000);