From d0ab4de4422094d300975aff1109a021788b9de1 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Fri, 19 Jul 2024 23:11:38 +0200 Subject: irmd: Fix printing tv_sec There was a logline printing tv_sec as a ssize_t instead of a long, causing compilation on raspbian 32-bit to fail. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/irmd/main.c b/src/irmd/main.c index 5d91baf0..cc15078f 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1232,7 +1232,7 @@ static int flow_alloc_reply(struct flow_info * flow, static int flow_dealloc(struct flow_info * flow, struct timespec * ts) { - log_info("Deallocating flow %d for process %d (timeout: %zd s).", + log_info("Deallocating flow %d for process %d (timeout: %ld s).", flow->id, flow->n_pid, ts->tv_sec); reg_dealloc_flow(flow); -- cgit v1.2.3