html2ms: fix compiler warning for debug code

This commit is contained in:
cinap_lenrek 2013-10-17 18:50:46 +02:00
parent 1015ae8ea8
commit 46f5ac0cd4

View file

@ -717,7 +717,11 @@ substrune(Rune r)
void
debugtag(Tag *tag, char *dbg)
{
if(1) return;
if(1){
USED(tag);
USED(dbg);
return;
}
if(tag == nil)
return;