html2ms: fix compiler warning for debug code
This commit is contained in:
parent
1015ae8ea8
commit
46f5ac0cd4
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue