mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 01:17:09 +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();
|
||||
}
|
||||
Err(s) => {
|
||||
error!("error: {:s}", s);
|
||||
error!("error: {}", s.to_str());
|
||||
fail!()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue