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:
parent
92cf96dedd
commit
861baaf584
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue