Add cast to last change to ensure value fits in destination ((char) added).

This commit is contained in:
tv 2001-02-02 19:00:18 +00:00
parent 834ac1455a
commit 07a5bebdd8

View File

@ -3799,7 +3799,7 @@ md_begin ()
}
for (i = 0; i < (int) sizeof (mklower_table); i++)
mklower_table[i] = (isupper (i)) ? tolower (i) : i;
mklower_table[i] = (char)((isupper (i)) ? tolower (i) : i);
for (i = 0; i < (int) sizeof (notend_table); i++)
{