[libcalamares] Don't use (bare) endl
- Use '\n' instead of endl (which should have been std::endl).
This commit is contained in:
parent
d2941d335e
commit
c13c7c4891
@ -62,7 +62,7 @@ isWritableDir( const QDir& dir )
|
||||
{
|
||||
if ( !dir.mkpath( "." ) )
|
||||
{
|
||||
cerr << "warning: failed to create " << qPrintable( path ) << endl;
|
||||
cerr << "warning: failed to create " << qPrintable( path ) << '\n';
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user