From 97514d18060ea978e0e07fb43ad6069c7eb4637e 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 850f02b87..8bd18ae80 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(); }