mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 02:57:44 +00:00
use semicolons if nothing returned
This commit is contained in:
parent
a2d5f06be4
commit
784f2e2ea1
56 changed files with 125 additions and 127 deletions
10
build.rs
10
build.rs
|
@ -77,7 +77,7 @@ pub fn main() {
|
|||
)
|
||||
.as_bytes(),
|
||||
)
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
}
|
||||
k if k.starts_with(override_prefix) => {
|
||||
mf.write_all(
|
||||
|
@ -97,7 +97,7 @@ pub fn main() {
|
|||
)
|
||||
.as_bytes(),
|
||||
)
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
}
|
||||
"false" | "true" => {
|
||||
mf.write_all(
|
||||
|
@ -116,7 +116,7 @@ pub fn main() {
|
|||
)
|
||||
.as_bytes(),
|
||||
)
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
}
|
||||
"hashsum" => {
|
||||
mf.write_all(
|
||||
|
@ -150,7 +150,7 @@ pub fn main() {
|
|||
)
|
||||
.as_bytes(),
|
||||
)
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
}
|
||||
_ => {
|
||||
mf.write_all(
|
||||
|
@ -169,7 +169,7 @@ pub fn main() {
|
|||
)
|
||||
.as_bytes(),
|
||||
)
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue