mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 20:47:46 +00:00
tail: fix build by changing uint to u64
This commit is contained in:
parent
9ccf4950d4
commit
2bf98d4598
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ fn main () { uumain(os::args()); }
|
||||||
|
|
||||||
pub fn uumain(args: Vec<String>) {
|
pub fn uumain(args: Vec<String>) {
|
||||||
let mut line_count = 10u;
|
let mut line_count = 10u;
|
||||||
let mut sleep_sec = 1000u;
|
let mut sleep_sec = 1000u64;
|
||||||
|
|
||||||
// handle obsolete -number syntax
|
// handle obsolete -number syntax
|
||||||
let options = match obsolete(args.tail()) {
|
let options = match obsolete(args.tail()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue