mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
base64/base64.rs: Fix build error with rust-0.10
This commit is contained in:
parent
9fe0f14ba8
commit
0b7edc6d80
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ fn decode(input: &mut Reader, ignore_garbage: bool) {
|
||||||
out.flush();
|
out.flush();
|
||||||
}
|
}
|
||||||
Err(s) => {
|
Err(s) => {
|
||||||
error!("error: {:s}", s);
|
error!("error: {}", s.to_str());
|
||||||
fail!()
|
fail!()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue