fixup! Introduce exile_vows_from_str()

This commit is contained in:
Albert S. 2022-01-30 10:45:05 +01:00
부모 5ef54a08b4
커밋 278ae31e2e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -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)
{