shithub: qk1

Download patch

ref: 5a6ed7f45e6d79d0a555c26ac87b0c0c2f0bfc6d
parent: 2bfad690ae30f86e7c4c85e4b1efc2331122b338
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Wed Jan 24 19:58:15 EST 2024

fix compilation with old compilers (gcc 10 on netbsd)

--- a/net_loop.c
+++ b/net_loop.c
@@ -180,8 +180,9 @@
 }
 
 
-bool Loop_CanSendUnreliableMessage (qsocket_t *) /*sock*/
+bool Loop_CanSendUnreliableMessage (qsocket_t *sock)
 {
+	USED(sock);
 	return true;
 }