acd: Fix LWIP_ASSERT argument order

This commit is contained in:
Erik Ekman 2021-05-13 13:28:02 +02:00
parent 3a788b6e8b
commit b9056e148e

View File

@ -165,7 +165,7 @@ acd_remove(struct netif *netif, struct acd *acd)
return;
}
}
LWIP_ASSERT(0, ("acd_remove(): acd not on list\n"));
LWIP_ASSERT(("acd_remove(): acd not on list\n"), 0);
}