From 7b3fc8f9bb44dd91d12381e602ea9dd46f69f39d 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 09ff2c48b01..3d101d66282 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";