+ fix for word size of OS

This commit is contained in:
wmayer 2014-08-25 15:25:09 +02:00
parent f28f83bf91
commit 97514d1806

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