From f3a26ea978b1a21eec0f5b9c00bbfbb95f9faacc Mon Sep 17 00:00:00 2001 From: Mitch-Fogler <109770019+Mitch-Fogler@users.noreply.github.com> Date: Sat, 17 Jan 2026 20:34:22 -0800 Subject: [PATCH] fixes compilation did not compile before, simple fix --- src/protocols.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/protocols.c b/src/protocols.c index ecf22b2..a7fa862 100644 --- a/src/protocols.c +++ b/src/protocols.c @@ -294,7 +294,7 @@ static void update_watchdogs() * - Feed/reset the watchdogs * - Check if any of the watchdogs has expired */ -static void *run_event_loop() +static void *run_event_loop(void *arg) { while (running) { @@ -634,3 +634,4 @@ void DS_ResetRobotPackets() sent_robot_packets = 0; received_robot_packets = 0; } +