diff options
author | Jim Meyering <jim@meyering.net> | 1999-05-07 18:36:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-05-07 18:36:54 +0000 |
commit | a8d7df994f351e7c5ad54fbc215a762a851f83c3 (patch) | |
tree | 97c0d15dc1c15b5cbd872a7a9f148ad5ba848745 /src | |
parent | b10e58db1b2fcac74c55a3bea30b6b51054e4a4c (diff) | |
download | coreutils-a8d7df994f351e7c5ad54fbc215a762a851f83c3.tar.xz |
(apply_translations): Use TOUPPER, not toupper.
Diffstat (limited to 'src')
-rw-r--r-- | src/dd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |