mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 17:08:21 +00:00
fix windows build
This commit is contained in:
parent
a947ce35e7
commit
eddc703fb8
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ pub struct FileBlame {
|
|||
fn fixup_windows_path(path: &str) -> String {
|
||||
#[cfg(windows)]
|
||||
{
|
||||
path.replace("\\", "/")
|
||||
path.replace('\\', "/")
|
||||
}
|
||||
|
||||
#[cfg(not(windows))]
|
||||
|
|
|
|||
Loading…
Reference in a new issue