From: Jim Meyering Date: Fri, 7 May 1999 18:36:54 +0000 (+0000) Subject: (apply_translations): Use TOUPPER, not toupper. X-Git-Tag: TEXTUTILS-1_22k~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8d7df994f351e7c5ad54fbc215a762a851f83c3;p=platform%2Fupstream%2Fcoreutils.git (apply_translations): Use TOUPPER, not toupper. --- diff --git a/src/dd.c b/src/dd.c index 063aebe..3aa8564 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; }