diff options
Diffstat (limited to 'sharpd/sharp_zebra.c')
-rw-r--r-- | sharpd/sharp_zebra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sharpd/sharp_zebra.c b/sharpd/sharp_zebra.c index 19c7e556c..744707699 100644 --- a/sharpd/sharp_zebra.c +++ b/sharpd/sharp_zebra.c @@ -213,7 +213,7 @@ static int route_notify_owner(ZAPI_CALLBACK_ARGS) monotime(&sg.r.t_end); timersub(&sg.r.t_end, &sg.r.t_start, &r); zlog_debug("Installed All Items %ld.%ld", r.tv_sec, - r.tv_usec); + (long int)r.tv_usec); handle_repeated(true); } break; @@ -229,7 +229,7 @@ static int route_notify_owner(ZAPI_CALLBACK_ARGS) monotime(&sg.r.t_end); timersub(&sg.r.t_end, &sg.r.t_start, &r); zlog_debug("Removed all Items %ld.%ld", r.tv_sec, - r.tv_usec); + (long int)r.tv_usec); handle_repeated(false); } break; |