1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

Use the correct syntax to define the mode

This commit is contained in:
Sylvestre Ledru 2020-11-16 22:02:06 +01:00 committed by GitHub
parent f55d8a22ec
commit 27d5256cb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ use std::fs;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::result::Result; use std::result::Result;
const DEFAULT_MODE: u32 = 755; const DEFAULT_MODE: u32 = 0o755;
#[allow(dead_code)] #[allow(dead_code)]
pub struct Behavior { pub struct Behavior {