summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Power <ayporosjsy@yahoo.co.uk>2014-11-26 20:45:14 +0000
committerJordan Power <ayporosjsy@yahoo.co.uk>2014-11-26 20:45:14 +0000
commit00d990beffb9f2a251c5d01c71519b6ec5483579 (patch)
tree27d4b5727daf2ad1827a7b3a7f47737ae9831c3b
parentb25fb0fa4afb8bc031982c7ace7ac5ea819e35c4 (diff)
Added std::endl so there is a newline for beauty.
-rw-r--r--timecommand.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/timecommand.cpp b/timecommand.cpp
index a3c2a08..acf5df6 100644
--- a/timecommand.cpp
+++ b/timecommand.cpp
@@ -21,7 +21,8 @@ int main() {
<< (now->tm_min) << ':'
- << (now->tm_sec);
+ << (now->tm_sec)
+ << std::endl;
// Give a return code - 0 means success
return 0;