diff --git a/common/common.v b/common/common.v index 489950b0..6ff3af0b 100644 --- a/common/common.v +++ b/common/common.v @@ -16,10 +16,11 @@ pub: } pub struct CoreutilExitDetail { +pub: message string -mut: - return_code int = 1 +pub mut: show_help_advice bool // defaults to false + return_code int = 1 } // coreutils_version returns formatted coreutils tool version diff --git a/common/readutmp_nix.c.v b/common/readutmp_nix.c.v index 7e22f1de..61a2ccd4 100644 --- a/common/readutmp_nix.c.v +++ b/common/readutmp_nix.c.v @@ -14,6 +14,7 @@ pub struct C.timeval { // pub struct C.timeval { +pub: tv_sec u64 // Seconds. tv_usec u64 // Microseconds. }