[libcalamares] Don't use (bare) endl

- Use '\n' instead of endl (which should have been std::endl).
main
Adriaan de Groot 7 years ago
parent d2941d335e
commit c13c7c4891

@ -62,7 +62,7 @@ isWritableDir( const QDir& dir )
{ {
if ( !dir.mkpath( "." ) ) if ( !dir.mkpath( "." ) )
{ {
cerr << "warning: failed to create " << qPrintable( path ) << endl; cerr << "warning: failed to create " << qPrintable( path ) << '\n';
return false; return false;
} }
return true; return true;

Loading…
Cancel
Save