fixed a typo (#55)

This commit is contained in:
Patrizio Bekerle 2018-11-30 17:08:31 +01:00 committed by Itay Grudev
parent c6bc2a3e52
commit 2fac2a3804

View File

@ -91,7 +91,7 @@ SingleApplication::SingleApplication( int &argc, char *argv[], bool allowSeconda
d->memory->unlock();
// Random sleep here limits the probability of a colision between two racing apps
// Random sleep here limits the probability of a collision between two racing apps
qsrand( QDateTime::currentMSecsSinceEpoch() % std::numeric_limits<uint>::max() );
QThread::sleep( 8 + static_cast <unsigned long>( static_cast <float>( qrand() ) / RAND_MAX * 10 ) );
}