diff --git a/src/slic3r/Utils/Platform.cpp b/src/slic3r/Utils/Platform.cpp index cf9131ef53..86f4d79652 100644 --- a/src/slic3r/Utils/Platform.cpp +++ b/src/slic3r/Utils/Platform.cpp @@ -35,7 +35,7 @@ void detect_platform() } } #elif defined(__OpenBSD__) - s_platform = Platform::BSD; + s_platform = Platform::BSDUnix; s_platform_flavor = PlatformFlavor::OpenBSD; #else // This should not happen. diff --git a/src/slic3r/Utils/Platform.hpp b/src/slic3r/Utils/Platform.hpp index e11bde4124..8298cf3f9b 100644 --- a/src/slic3r/Utils/Platform.hpp +++ b/src/slic3r/Utils/Platform.hpp @@ -11,7 +11,7 @@ enum class Platform Windows, OSX, Linux, - BSD, + BSDUnix, }; enum class PlatformFlavor @@ -23,7 +23,7 @@ enum class PlatformFlavor // For Platform::Linux GenericLinux, LinuxOnChromium, - // For Platform::BSD + // For Platform::BSDUnix OpenBSD, };