diff options
-rw-r--r-- | tvix/eval/src/io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index 1baa24439e4a..931a0f45cc47 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -73,7 +73,7 @@ impl EvalIO for StdIO { } fn read_to_string(&self, path: &Path) -> Result<String, io::Error> { - std::fs::read_to_string(&path) + std::fs::read_to_string(path) } fn read_dir(&self, path: &Path) -> Result<Vec<(bytes::Bytes, FileType)>, io::Error> { |