libsa/netif.c: Replace #if with #ifdef

Follow the convention with *_DEBUG macros in stand/libsa/* and replace
"#if" with "#ifdef".

Reviewed by:	kd
Obtained from:	Semihalf
Differential Revision: https://reviews.freebsd.org/D36740
This commit is contained in:
Michał Grzelak 2022-09-28 12:31:25 +02:00 committed by Kornel Dulęba
parent c66c6da4f0
commit 7b54d275ef

View File

@ -91,7 +91,7 @@ netif_match(struct netif *nif, void *machdep_hint)
{
struct netif_driver *drv = nif->nif_driver;
#if NETIF_DEBUG
#ifdef NETIF_DEBUG
if (netif_debug)
printf("%s%d: netif_match (%d)\n", drv->netif_bname,
nif->nif_unit, nif->nif_sel);