rust/hg-core/src/operations/list_tracked_files.rs
changeset 48022 f2a9db29cb2d
parent 47964 796206e74b10
child 48342 10c32e1b892a
--- a/rust/hg-core/src/operations/list_tracked_files.rs	Mon Sep 20 13:16:36 2021 +0200
+++ b/rust/hg-core/src/operations/list_tracked_files.rs	Fri Sep 17 13:33:45 2021 +0200
@@ -51,7 +51,7 @@
                 let _parents = parse_dirstate_entries(
                     &self.content,
                     |path, entry, _copy_source| {
-                        if entry.state.is_tracked() {
+                        if entry.state().is_tracked() {
                             files.push(path)
                         }
                         Ok(())