Skip to content

Commit

Permalink
event_route: fix compile warning on i386
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Nov 19, 2014
1 parent e6b20b1 commit 38ba91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/event_route/route_send.c
Expand Up @@ -82,7 +82,7 @@ int route_send(route_send_t *route_s)
LM_ERR("unable to send route send struct to worker\n");
return -1;
} else if (rc != sizeof(route_send_t *)){
LM_ERR("Incomplete write [%d/%lu]\n", rc, sizeof(route_send_t *));
LM_ERR("Incomplete write [%d/%zu]\n", rc, sizeof(route_send_t *));
return -1;
}
/* give a change to the writer :) */
Expand Down

0 comments on commit 38ba91b

Please sign in to comment.