* src/html-url.c (cleanup_html_url): Only compile for DEBUG_MALLOC or TESTING

This commit is contained in:
Tim Rühsen 2020-02-27 19:51:55 +01:00
parent ee187476de
commit a3d3322a48

View File

@ -963,6 +963,7 @@ get_urls_file (const char *file)
return head;
}
#if defined DEBUG_MALLOC || defined TESTING
void
cleanup_html_url (void)
{
@ -973,3 +974,4 @@ cleanup_html_url (void)
if (interesting_attributes)
hash_table_destroy (interesting_attributes);
}
#endif