eep(1): comment why u64 number

This commit is contained in:
dtb 2024-07-15 15:45:50 -06:00
parent 6334f41e0b
commit b7fe7294c6
Signed by: trinity
GPG Key ID: 34C0543BBB6AF81B

View File

@ -36,7 +36,7 @@ fn main() -> ExitCode {
if argv.len() == 2 {
if let Ok(s) = argv[1].parse::<u64>() {
sleep(Duration::from_secs(s));
sleep(Duration::from_secs(s)); /* from_secs needs u64 */
ExitCode::SUCCESS
} else {
usage(&argv[0])