intcmp(1), swab(1): consistent type annotations

This commit is contained in:
2024-10-01 22:08:56 -06:00
parent c4cd2563f9
commit 982c67df13
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ fn err(argv0: &String, e: String, code: u8) -> ExitCode {
ExitCode::from(code)
}
fn usage(argv0: &str) -> ExitCode {
fn usage(argv0: &String) -> ExitCode {
eprintln!("Usage: {} [-egl] integer integer...", argv0);
ExitCode::from(EX_USAGE)
}