diff options
| author | namilsk <namilsk@namilsk.tech> | 2026-01-31 21:26:26 +0300 |
|---|---|---|
| committer | namilsk <namilsk@namilsk.tech> | 2026-01-31 21:26:26 +0300 |
| commit | a5749a5d8d38b0db2ce5548473f8a61b674578a6 (patch) | |
| tree | fe9227f4b40345a2730ce9373c740787e7ca5506 /init/src/mounts/fstab.rs | |
| parent | b81a55bea1525b2fcf84591eb902926fb1d0cece (diff) | |
Started writing service-utils and adding docstrings
Diffstat (limited to 'init/src/mounts/fstab.rs')
| -rw-r--r-- | init/src/mounts/fstab.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init/src/mounts/fstab.rs b/init/src/mounts/fstab.rs index 4d9b474..7d71520 100644 --- a/init/src/mounts/fstab.rs +++ b/init/src/mounts/fstab.rs @@ -135,7 +135,10 @@ impl FstabEntry { pub fn mount(&self) -> Result<(), Box<dyn std::error::Error>> { if let Err(e) = Self::check_mount_point_permissions(&self.mountpoint) { - log_warning(&format!("Permission check failed for {}: {}", self.mountpoint, e)); + log_warning(&format!( + "Permission check failed for {}: {}", + self.mountpoint, e + )); } log_success(&format!( |
