mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
tr: use logical AND instead of bitwise AND
This commit is contained in:
parent
ded2034eb7
commit
74d7cd123f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
));
|
||||
}
|
||||
|
||||
if delete_flag & squeeze_flag && sets_len == 1 {
|
||||
if delete_flag && squeeze_flag && sets_len == 1 {
|
||||
return Err(UUsageError::new(
|
||||
1,
|
||||
get_message_with_args(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue