Fix unused-parameter warning in systemd_watchdog_callback

This commit is contained in:
Nick Mathewson
2015-01-11 11:19:51 -05:00
parent 8db15960d1
commit e009c2da51
+2
View File
@@ -1776,6 +1776,8 @@ static periodic_timer_t *systemd_watchdog_timer = NULL;
static void
systemd_watchdog_callback(periodic_timer_t *timer, void *arg)
{
(void)timer;
(void)arg;
sd_notify(0, "WATCHDOG=1");
}
#endif