Skip to content

Commit

Permalink
Fix typo in os.cpp on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkewley committed Jan 8, 2025
1 parent 2a70bbb commit e90c284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oscar/Platform/os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ void osc::open_url_in_os_default_web_browser(std::string_view url)
{
std::stringstream cmd;
cmd << "open " << url;
system(std::move(cmd).c_str());
system(std::move(cmd).str());
}

#elif defined(WIN32)
Expand Down

0 comments on commit e90c284

Please sign in to comment.