Skip to content

Commit

Permalink
Fix armv7 compilation after 254890@main
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=246403

Unreviewed.

* Source/WebKit/UIProcess/Launcher/glib/ProcessProviderGLib.cpp:
(WebKit::ProcessProviderLibWPE::launchProcess): add missing cast.

Canonical link: https://commits.webkit.org/255444@main
  • Loading branch information
guijemont committed Oct 12, 2022
1 parent 68cb8b9 commit daabc31
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,7 +39,7 @@ ProcessID ProcessProviderLibWPE::launchProcess(const ProcessLauncher::LaunchOpti
if (!m_provider)
return -1;

if (wpe_process_launch(m_provider.get(), wpeProcessType(launchOptions.processType), argv) > -1)
if (wpe_process_launch(m_provider.get(), static_cast<wpe_process_type>(wpeProcessType(launchOptions.processType)), argv) > -1)
return launchOptions.processIdentifier.toUInt64();
return -1;
#else
Expand Down

0 comments on commit daabc31

Please sign in to comment.