From 153c5b8c9d890db78d0bdbc64269ada6c08661bf Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 17 Mar 2003 07:59:59 +0000 Subject: Vendor import of bwk's 14-March-2003 release. --- contrib/one-true-awk/run.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/one-true-awk/run.c') diff --git a/contrib/one-true-awk/run.c b/contrib/one-true-awk/run.c index 64722bd..617ac7d 100644 --- a/contrib/one-true-awk/run.c +++ b/contrib/one-true-awk/run.c @@ -1509,11 +1509,11 @@ Cell *bltin(Node **a, int n) /* builtin functions. a[0] is type, a[1] is arg lis if (t == FTOUPPER) { for (p = buf; *p; p++) if (islower((uschar) *p)) - *p = toupper(*p); + *p = toupper((uschar)*p); } else { for (p = buf; *p; p++) if (isupper((uschar) *p)) - *p = tolower(*p); + *p = tolower((uschar)*p); } tempfree(x); x = gettemp(); -- cgit v1.1