mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-28 09:55:37 -04:00
[calamares] Reduce warnings now that getInteger is qint64
This commit is contained in:
parent
82622373bc
commit
310a1d76cf
4 changed files with 5 additions and 5 deletions
|
@ -69,7 +69,7 @@ void
|
|||
ShellProcessJob::setConfigurationMap( const QVariantMap& configurationMap )
|
||||
{
|
||||
bool dontChroot = CalamaresUtils::getBool( configurationMap, "dontChroot", false );
|
||||
int timeout = CalamaresUtils::getInteger( configurationMap, "timeout", 10 );
|
||||
qint64 timeout = CalamaresUtils::getInteger( configurationMap, "timeout", 10 );
|
||||
if ( timeout < 1 )
|
||||
{
|
||||
timeout = 10;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue