diff options
Diffstat (limited to 'cli/ops/fs.rs')
-rw-r--r-- | cli/ops/fs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/fs.rs b/cli/ops/fs.rs index 31b22b3e6..416ae210a 100644 --- a/cli/ops/fs.rs +++ b/cli/ops/fs.rs @@ -730,7 +730,7 @@ fn op_symlink( // Unlike with chmod/chown, here we don't // require `oldpath` to exist on Windows let _ = oldpath; // avoid unused warning - return Err(OpError::other("Not implemented".to_string())); + return Err(OpError::not_implemented()); } }) } |