Skip to content

Commit eddc703

Browse files
author
Stephan Dilly
committed
fix windows build
1 parent a947ce3 commit eddc703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncgit/src/sync/blame.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub struct FileBlame {
4343
fn fixup_windows_path(path: &str) -> String {
4444
#[cfg(windows)]
4545
{
46-
path.replace("\\", "/")
46+
path.replace('\\', "/")
4747
}
4848

4949
#[cfg(not(windows))]

0 commit comments

Comments
 (0)