mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
from_base64 returns Vec<u8> now
This commit is contained in:
parent
b1983536e1
commit
93f7220a40
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ fn decode(input: &mut Reader, ignore_garbage: bool) {
|
||||||
Ok(bytes) => {
|
Ok(bytes) => {
|
||||||
let mut out = stdout();
|
let mut out = stdout();
|
||||||
|
|
||||||
match out.write(bytes) {
|
match out.write(bytes.as_slice()) {
|
||||||
Ok(_) => {}
|
Ok(_) => {}
|
||||||
Err(f) => { crash!(1, "{}", f.to_str()); }
|
Err(f) => { crash!(1, "{}", f.to_str()); }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue