+ fix for word size of OS

This commit is contained in:
wmayer
2014-08-25 15:25:09 +02:00
parent a3f70e7bbc
commit 00d57ed646

View File

@@ -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();
}