rust/hg-cpython/src/dirstate/status.rs
changeset 45111 7528699c6ccb
parent 44973 26114bd6ec60
child 45610 496537c9c1b4
--- a/rust/hg-cpython/src/dirstate/status.rs	Fri Dec 13 22:20:03 2019 -0800
+++ b/rust/hg-cpython/src/dirstate/status.rs	Wed Jun 24 16:12:45 2020 +0200
@@ -127,7 +127,7 @@
             let ((lookup, status_res), warnings) = status(
                 &dmap,
                 &matcher,
-                &root_dir,
+                root_dir.to_path_buf(),
                 ignore_files,
                 StatusOptions {
                     check_exec,
@@ -164,7 +164,7 @@
             let ((lookup, status_res), warnings) = status(
                 &dmap,
                 &matcher,
-                &root_dir,
+                root_dir.to_path_buf(),
                 ignore_files,
                 StatusOptions {
                     check_exec,
@@ -219,7 +219,7 @@
             let ((lookup, status_res), warnings) = status(
                 &dmap,
                 &matcher,
-                &root_dir,
+                root_dir.to_path_buf(),
                 ignore_files,
                 StatusOptions {
                     check_exec,