From 917a12e9d1f2d0605958968ce503655afdac9395 Mon Sep 17 00:00:00 2001
From: Matthew Edge <matthewjjedge@gmail.com>
Date: Sun, 7 Apr 2024 03:39:02 +0000
Subject: [PATCH] fix syntax error

---
 tools/ristreceiver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ristreceiver.c b/tools/ristreceiver.c
index 93aedd88..e807ac3a 100644
--- a/tools/ristreceiver.c
+++ b/tools/ristreceiver.c
@@ -802,7 +802,7 @@ int main(int argc, char *argv[])
 #ifdef USE_TUN
 		if (strcmp(udp_config->prefix, "tun") == 0) {
 			if (!callback_object.tun) {
-				rist_log(%logging_settings, RIST_LOG_ERROR, "Detected 'tun://' usage in output url but '--tun' argument was not given\n");
+				rist_log(&logging_settings, RIST_LOG_ERROR, "Detected 'tun://' usage in output url but '--tun' argument was not given\n");
 				exit(1);
 			}
 			atleast_one_socket_opened = true;
-- 
GitLab