From a8d7df994f351e7c5ad54fbc215a762a851f83c3 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 7 May 1999 18:36:54 +0000 Subject: [PATCH] (apply_translations): Use TOUPPER, not toupper. --- src/dd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dd.c b/src/dd.c index 063aebe4a5..3aa856448a 100644 --- a/src/dd.c +++ b/src/dd.c @@ -627,14 +627,14 @@ only one conv in {ascii,ebcdic,ibm}, {lcase,ucase}, {block,unblock}, {unblock,sy { for (i = 0; i < 256; i++) if (ISLOWER (trans_table[i])) - trans_table[i] = toupper (trans_table[i]); + trans_table[i] = TOUPPER (trans_table[i]); translation_needed = 1; } else if (conversions_mask & C_LCASE) { for (i = 0; i < 256; i++) if (ISUPPER (trans_table[i])) - trans_table[i] = tolower (trans_table[i]); + trans_table[i] = TOLOWER (trans_table[i]); translation_needed = 1; } -- 2.47.3