From 5d19762b5ffb2b426e5ab1a5384f6163970f030d Mon Sep 17 00:00:00 2001 From: Alexander Traud Date: Sat, 3 Mar 2018 15:30:47 +0100 Subject: BuildSystem: Cast any intptr_t explicitly to its proposed type. ASTERISK-27713 Change-Id: I90c769e3c7f8c26de8a3af11335862cec15a1b22 --- main/stdtime/localtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/stdtime/localtime.c b/main/stdtime/localtime.c index 2976e59c1..ded4421d2 100644 --- a/main/stdtime/localtime.c +++ b/main/stdtime/localtime.c @@ -504,7 +504,7 @@ static void *kqueue_daemon(void *data) continue; } - sp = kev.udata; + sp = (struct state *) kev.udata; AST_LIST_LOCK(&zonelist); /* see comment near psx_sp in add_notify() */ -- cgit v1.2.3