diff --git a/plugins/libimhex/source/helpers/utils.cpp b/plugins/libimhex/source/helpers/utils.cpp index 6fef2c202..a64031fee 100644 --- a/plugins/libimhex/source/helpers/utils.cpp +++ b/plugins/libimhex/source/helpers/utils.cpp @@ -160,9 +160,9 @@ namespace hex { #if defined(OS_WINDOWS) system(hex::format("start %s", url.data()).c_str()); #elif defined(OS_MACOS) - system(hex::format("open %s", url.data()).c_str()) + system(hex::format("open %s", url.data()).c_str()); #elif defined(OS_LINUX) - system(hex::format("xdg-open %s", url.data()).c_str()) + system(hex::format("xdg-open %s", url.data()).c_str()); #else #warning "Unknown OS, can't open webpages" #endif