1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-31 04:03:47 +01:00

nu/gpio.c: Fix static assert

This commit is contained in:
Tau 2018-11-23 18:22:55 -05:00
parent 9ec0fbf957
commit 829ca160be

View File

@ -71,7 +71,7 @@ static const struct gpio_ports gpio_ports = {
},
};
_Static_assert(sizeof(gpio_ports) == 129, "GPIO port map size");
static_assert(sizeof(gpio_ports) == 129, "GPIO port map size");
void gpio_hook_init(void)
{