summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChristoph VogtlÃĪnder <c.vogtlaender@sigma-surface-science.com>2014-11-04 15:55:45 +0100
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-11-04 16:01:02 +0100
commit96aab6471be22e82081e87db93ac48619331d19f (patch)
tree290ce8e42a44ba076c405084786ba1a1496225a4 /tools
parent7e72e4b7d90d1af5805349d3d9155475bfe22120 (diff)
add info message line ending
added missing std::endl in "repogen --update-new-components" info message in case packages list is empty Change-Id: I9a49e46ee031c14a9b02cd41e0a4be2d0234c1af Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/repogen/repogen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/repogen/repogen.cpp b/tools/repogen/repogen.cpp
index 4b4476ea7..4164fe4a2 100644
--- a/tools/repogen/repogen.cpp
+++ b/tools/repogen/repogen.cpp
@@ -250,7 +250,7 @@ int main(int argc, char** argv)
if (packages.isEmpty()) {
std::cout << QString::fromLatin1("Could not find new components to update '%1'.")
- .arg(repositoryDir);
+ .arg(repositoryDir) << std::endl;
return EXIT_SUCCESS;
}
}