From 00d57ed646897de3c1931407569815291385c10b Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 25 Aug 2014 15:25:09 +0200 Subject: [PATCH] + fix for word size of OS --- src/Gui/Splashscreen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp index 850f02b873..8bd18ae802 100644 --- a/src/Gui/Splashscreen.cpp +++ b/src/Gui/Splashscreen.cpp @@ -315,6 +315,7 @@ static int getWordSizeOfOS() proc.start(exe, args); if (proc.waitForStarted() && proc.waitForFinished()) { QByteArray info = proc.readAll(); + info.replace('\n',""); return info.toInt(); }