git: 9front

Download patch

ref: 2a3fec715145abdfd3f02e1c0c18aebf1e32ddd5
parent: cf6c6c53664465b2576c67e379726eba185b4b13
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Thu Oct 17 14:50:46 EDT 2013

html2ms: fix compiler warning for debug code

--- a/sys/src/cmd/html2ms.c
+++ b/sys/src/cmd/html2ms.c
@@ -717,7 +717,11 @@
 void
 debugtag(Tag *tag, char *dbg)
 {
-	if(1) return;
+	if(1){
+		USED(tag);
+		USED(dbg);
+		return;
+	}
 
 	if(tag == nil)
 		return;
--