1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

tee: fix build

This commit is contained in:
Michael Gehring 2014-10-21 13:36:10 +02:00
parent 5fcb808efc
commit f771d5dbc3

View file

@ -152,5 +152,5 @@ fn with_path<T>(path: &Path, cb: || -> IoResult<T>) -> IoResult<T> {
}
fn warn(message: &str) {
error!("{}: {}", os::args().get(0), message);
error!("{}: {}", os::args()[0], message);
}