Merge pull request #1574 from gportay/partition-fix-typo

[partition] Fix typo
This commit is contained in:
Adriaan de Groot 2020-11-11 23:50:33 +01:00 committed by GitHub
commit b1b801e5f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ Config::setSwapChoice( int c )
{
if ( ( c < SwapChoice::NoSwap ) || ( c > SwapChoice::SwapFile ) )
{
cWarning() << "Instalid swap choice (int)" << c;
cWarning() << "Invalid swap choice (int)" << c;
c = SwapChoice::NoSwap;
}
setSwapChoice( static_cast< SwapChoice >( c ) );