diff options
-rw-r--r-- | timecommand.cpp | 3 |
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; |