1
Fork 0
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:
nuts 2014-01-21 20:00:01 +01:00
parent 9fe0f14ba8
commit 0b7edc6d80

View file

@ -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!()
} }
} }