1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-18 11:11:10 +00:00

Make uumain return isize everywhere

This commit is contained in:
Michael Gehring 2015-01-10 14:07:39 +01:00
parent c223e28fac
commit f2d49f4bb6
57 changed files with 57 additions and 57 deletions

View file

@ -23,7 +23,7 @@ mod util;
static NAME: &'static str = "split";
static VERSION: &'static str = "1.0.0";
pub fn uumain(args: Vec<String>) -> int {
pub fn uumain(args: Vec<String>) -> isize {
let opts = [
getopts::optopt("a", "suffix-length", "use suffixes of length N (default 2)", "N"),
getopts::optopt("b", "bytes", "put SIZE bytes per output file", "SIZE"),