mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
Merge pull request #68 from nutsi/master
base64/base64.rs: Fix build error with rust-0.10
This commit is contained in:
commit
2eb243cb58
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