1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

chore: delete 'error:' prefix on show_error

This commit is contained in:
Yağız can Değirmenci 2021-05-26 02:32:02 +03:00
parent c78a7937f8
commit 898d2eb489

View file

@ -25,7 +25,7 @@ macro_rules! executable(
#[macro_export] #[macro_export]
macro_rules! show_error( macro_rules! show_error(
($($args:tt)+) => ({ ($($args:tt)+) => ({
eprint!("{}: error: ", executable!()); eprint!("{}: ", executable!());
eprintln!($($args)+); eprintln!($($args)+);
}) })
); );