diff options
Diffstat (limited to 'tvix/store/src/proto')
-rw-r--r-- | tvix/store/src/proto/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/proto/mod.rs b/tvix/store/src/proto/mod.rs index f95ea62f972e..4bf4cfba1b6a 100644 --- a/tvix/store/src/proto/mod.rs +++ b/tvix/store/src/proto/mod.rs @@ -173,7 +173,7 @@ impl PathInfo { castorepb::node::Node::Symlink(_) => {} } // parse the name of the node itself and return - parse_node_name_root(&node.get_name(), ValidatePathInfoError::InvalidNodeName)? + parse_node_name_root(node.get_name(), ValidatePathInfoError::InvalidNodeName)? } }, }; |