diff --git a/src/uucore_procs/src/lib.rs b/src/uucore_procs/src/lib.rs index 391db32907e..e2aeb18101e 100644 --- a/src/uucore_procs/src/lib.rs +++ b/src/uucore_procs/src/lib.rs @@ -59,7 +59,8 @@ pub fn main(args: TokenStream, stream: TokenStream) -> TokenStream { uucore::show_error!("{s}"); } if e.usage() { - eprintln!("Try '{} --help' for more information.", uucore::execution_phrase()); + use std::io::{stderr, Write as _}; + let _ = writeln!(stderr(),"Try '{} --help' for more information.", uucore::execution_phrase()); } e.code() }