From 95c5763b83a9f0cb85a62a12e8955825503b02ea Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Sun, 14 Mar 2021 06:54:23 +0100 Subject: [PATCH] Fixed typo in previous commit. --- src/slic3r/Utils/Platform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/Utils/Platform.cpp b/src/slic3r/Utils/Platform.cpp index 09ff2c48b0..3d101d6628 100644 --- a/src/slic3r/Utils/Platform.cpp +++ b/src/slic3r/Utils/Platform.cpp @@ -34,7 +34,7 @@ void detect_platform() if (f) { char buf[4096]; // Read the 1st line. - if (::fgets(buf, 4096, f)) + if (::fgets(buf, 4096, f)) { if (strstr(buf, "Chromium OS") != nullptr) { s_platform_flavor = PlatformFlavor::LinuxOnChromium; BOOST_LOG_TRIVIAL(info) << "Platform flavor: LinuxOnChromium";