From 6b899b28493f2b8d3f855a8777c42f1eb274baf1 Mon Sep 17 00:00:00 2001 From: Alexander Traud Date: Sat, 3 Mar 2018 15:30:47 +0100 Subject: [PATCH] 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 f8050c95ce..08d6d27b5f 100644 --- a/main/stdtime/localtime.c +++ b/main/stdtime/localtime.c @@ -506,7 +506,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() */