From 2c529cd84972c949935ba57a1e7ce144ab70eaeb Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Wed, 29 Jan 2020 00:36:20 -0500 Subject: [PATCH] Fix bug where `--with-symlink-targets` would not display the `targets` column (#1300) --- src/data/files.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/files.rs b/src/data/files.rs index 6543b86b4c..5fb93bdce1 100644 --- a/src/data/files.rs +++ b/src/data/files.rs @@ -7,8 +7,8 @@ pub(crate) fn dir_entry_dict( metadata: &std::fs::Metadata, tag: impl Into, full: bool, - with_symlink_targets: bool, name_only: bool, + with_symlink_targets: bool, ) -> Result { let tag = tag.into(); let mut dict = TaggedDictBuilder::new(&tag);