bsp/lpc32xx: Fix warning

The type is a pointer.
This commit is contained in:
Sebastian Huber
2022-06-30 10:25:13 +02:00
parent 9a975e5211
commit 5c2f2b304a

View File

@@ -100,7 +100,7 @@ static char *lpc_eth_config_alloc_table_area(size_t size)
static void lpc_eth_config_free_table_area(char *table_area)
{
/* FIXME: Type */
free(table_area, (int) 0xdeadbeef);
free(table_area, NULL);
}
/** @} */