From f4c871aeaa6bece59372038ecef4263848c7e451 Mon Sep 17 00:00:00 2001 From: keno Date: Tue, 21 Sep 2021 22:47:44 +0900 Subject: [PATCH] style: Fix indentation --- src/rootless.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/rootless.rs b/src/rootless.rs index 68d469c9f..aac5651f1 100644 --- a/src/rootless.rs +++ b/src/rootless.rs @@ -208,9 +208,9 @@ pub fn lookup_map_binaries(spec: &Linux) -> Result> { let gidmap = lookup_map_binary("newgidmap")?; match (uidmap, gidmap) { - (Some(newuidmap), Some(newgidmap)) => Ok(Some((newuidmap, newgidmap))), - _ => bail!("newuidmap/newgidmap binaries could not be found in path. This is required if multiple id mappings are specified"), - } + (Some(newuidmap), Some(newgidmap)) => Ok(Some((newuidmap, newgidmap))), + _ => bail!("newuidmap/newgidmap binaries could not be found in path. This is required if multiple id mappings are specified"), + } } else { Ok(None) }