1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

'final' is a keyword now

This commit is contained in:
Michael Gehring 2014-10-10 18:36:15 +02:00
parent 92cf96dedd
commit 861baaf584

View file

@ -159,9 +159,9 @@ fn encode(input: &mut Reader, line_wrap: uint) {
// However, since GNU base64 outputs only LF (presumably because that is
// the standard UNIX line ending), we strip CRs from the output to maintain
// compatibility.
let final = encoded.replace("\r", "");
let output = encoded.replace("\r", "");
println(final.as_slice());
println(output.as_slice());
}
fn help(progname: &str, usage: &str) {