From c13c7c4891e762d0524796808d497ef575774790 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 11 Apr 2019 12:31:57 +0200 Subject: [PATCH] [libcalamares] Don't use (bare) endl - Use '\n' instead of endl (which should have been std::endl). --- src/libcalamares/utils/CalamaresUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcalamares/utils/CalamaresUtils.cpp b/src/libcalamares/utils/CalamaresUtils.cpp index 4a8b1f528..8441218d2 100644 --- a/src/libcalamares/utils/CalamaresUtils.cpp +++ b/src/libcalamares/utils/CalamaresUtils.cpp @@ -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;