From e009c2da5138bce5e8244658177efbe48c641035 Mon Sep 17 00:00:00 2001 From: Nick Mathewson <nickm@torproject.org> Date: Sun, 11 Jan 2015 11:19:51 -0500 Subject: [PATCH] Fix unused-parameter warning in systemd_watchdog_callback --- src/or/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/main.c b/src/or/main.c index bf4e6db7c1..b691a92df2 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -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 -- GitLab