summaryrefslogtreecommitdiff
path: root/code/ecp/timer.c
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-06-06 14:33:34 +0200
committerUros Majstorovic <majstor@majstor.org>2020-06-06 14:33:34 +0200
commitac9ff0db66059df15dd6e71db9c7ff5e7f7ea7b5 (patch)
tree0b957a39cd16cea2dc5be288829056aeac54c5dc /code/ecp/timer.c
parent56b4d84531010e828a543b00df0adaf7ae9cb674 (diff)
ecp_conn_handler_msg_t typedef fixed
Diffstat (limited to 'code/ecp/timer.c')
-rw-r--r--code/ecp/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/ecp/timer.c b/code/ecp/timer.c
index 96a69d0..5460437 100644
--- a/code/ecp/timer.c
+++ b/code/ecp/timer.c
@@ -184,7 +184,7 @@ ecp_cts_t ecp_timer_exe(ECPSocket *sock) {
ECPConnection *conn = to_exec[i].conn;
unsigned char mtype = to_exec[i].mtype;
ecp_timer_retry_t retry = to_exec[i].retry;
- ecp_conn_handler_msg_t *handler = conn->sock->ctx->handler[conn->type] ? conn->sock->ctx->handler[conn->type]->msg[mtype & ECP_MTYPE_MASK] : NULL;
+ ecp_conn_handler_msg_t handler = conn->sock->ctx->handler[conn->type] ? conn->sock->ctx->handler[conn->type]->msg[mtype & ECP_MTYPE_MASK] : NULL;
if (to_exec[i].cnt > 0) {
ssize_t _rv = 0;