Skip to content

Commit

Permalink
use POSIX separators for MakePathRelative
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmin committed Aug 1, 2023
1 parent 92d5a0f commit 500656a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packager/mpd/base/mpd_builder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ std::string MakePathRelative(const std::filesystem::path& media_path,
relative_path = media_path;
}

return relative_path.lexically_normal().string();
return relative_path.lexically_normal().generic_string();
}

// Spooky static initialization/cleanup of libxml.
Expand Down

0 comments on commit 500656a

Please sign in to comment.