[libcalamares] Don't use (bare) endl

- Use '\n' instead of endl (which should have been std::endl).
This commit is contained in:
Adriaan de Groot 2019-04-11 12:31:57 +02:00
parent d2941d335e
commit c13c7c4891

View File

@ -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;