1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

nl: remove to_err_msg (deprecated)

This commit is contained in:
Arcterus 2014-06-15 20:48:10 -07:00
parent 24ea665a19
commit 30df0ca208

View file

@ -114,7 +114,7 @@ pub fn uumain(args: Vec<String>) -> int {
let given_options = match getopts(args.tail(), possible_options) {
Ok (m) => { m }
Err(f) => {
show_error!("{}", f.to_err_msg());
show_error!("{}", f);
print_usage(possible_options);
return 1
}