shithub: moonfish

Download patch

ref: a57b92c05c8f4a6fb42819e189c3b6e1c25aeed6
parent: 13c9c78cc39e938764abd26ea1169ce74298f4f5
author: zamfofex <zamfofex@twdb.moe>
date: Sun Dec 24 03:13:29 EST 2023

mark ‘ctx’ argument as ignored on Windows

--- a/search.c
+++ b/search.c
@@ -214,6 +214,7 @@
 
 static long int moonfish_clock(struct moonfish *ctx)
 {
+	(void) ctx;
 	return GetTickCount();
 }
 
--