fixup! Introduce exile_vows_from_str()

Este commit está contenido en:
Albert S. 2022-01-30 10:45:05 +01:00
padre 5ef54a08b4
commit 278ae31e2e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -698,7 +698,7 @@ uint64_t exile_vows_from_str(const char *str)
++str;
}
int found = 0;
for(int i = 0; i < sizeof(str_to_vow_map)/sizeof(str_to_vow_map[0]); i++)
for(size_t i = 0; i < sizeof(str_to_vow_map)/sizeof(str_to_vow_map[0]); i++)
{
if(strcmp(str_to_vow_map[i].str, current) == 0)
{