Fix compiler warnings on NetBSD

This commit is contained in:
Miroslav Lichvar
2014-09-09 11:48:09 +02:00
parent 0168b405a3
commit 584bf9382b
5 changed files with 8 additions and 7 deletions

View File

@@ -2532,7 +2532,7 @@ LookupWord (buff)
/* Make it lowercase. */
for (p = buff; *p; p++)
if (ISUPPER ((unsigned char) *p))
*p = tolower (*p);
*p = tolower ((unsigned char) *p);
if (strcmp (buff, "am") == 0 || strcmp (buff, "a.m.") == 0)
{