Skip to content

Commit 041784d

Browse files
committed
Fix chgrp error header
1 parent 4dc6dbf commit 041784d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tree/chgrp.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ fn err_handler(e: io::Error, path: ftw::DisplayablePath) {
6161
gettext!("changing group of '{}': {}", path, error_string(&e))
6262
}
6363
};
64-
eprintln!("chown: {}", err_str);
64+
eprintln!("chgrp: {}", err_str);
6565
}
6666

6767
fn chown_err_handler(e: io::Error, path: ftw::DisplayablePath) {
@@ -73,7 +73,7 @@ fn chown_err_handler(e: io::Error, path: ftw::DisplayablePath) {
7373
gettext!("changing group of '{}': {}", path, error_string(&e))
7474
}
7575
};
76-
eprintln!("chown: {}", err_str);
76+
eprintln!("chgrp: {}", err_str);
7777
}
7878

7979
fn main() -> Result<(), Box<dyn std::error::Error>> {

0 commit comments

Comments
 (0)