diff options
Diffstat (limited to 'src/operations/ls.rs')
-rw-r--r-- | src/operations/ls.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/operations/ls.rs b/src/operations/ls.rs index afb0f18..ab07305 100644 --- a/src/operations/ls.rs +++ b/src/operations/ls.rs @@ -40,7 +40,7 @@ pub fn traverse_directory(path: impl AsRef<Path>) -> ReadResult<Vec<Entry>> { for entry in list_directory(path)? { match entry.entry_type { EntryType::File => file_entries.push(entry), - EntryType::Directory => file_entries.extend(traverse_directory(&entry.path)?), + EntryType::Directory => file_entries.extend(traverse_directory(entry)?), } } return Ok(file_entries); |