mirror of
https://github.com/uutils/coreutils
synced 2024-12-19 17:43:52 +00:00
Fix type synonym relaiance which breaks some rusts
This commit is contained in:
parent
78c12ec9a9
commit
28d1de1de0
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ const DEFAULT_MODE: libc::mode_t = 755;
|
||||||
|
|
||||||
pub struct Behaviour {
|
pub struct Behaviour {
|
||||||
main_function: MainFunction,
|
main_function: MainFunction,
|
||||||
specified_mode: Option<u16>,
|
specified_mode: Option<libc::mode_t>,
|
||||||
suffix: String,
|
suffix: String,
|
||||||
verbose: bool
|
verbose: bool
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue