diff options
Diffstat (limited to 'src/chatlogger.cpp')
-rw-r--r-- | src/chatlogger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chatlogger.cpp b/src/chatlogger.cpp index a7a660036..62968d8b7 100644 --- a/src/chatlogger.cpp +++ b/src/chatlogger.cpp @@ -124,7 +124,7 @@ std::string ChatLogger::getDir() const time_t rawtime; char buffer [81]; - time (&rawtime); + time(&rawtime); struct tm *const timeinfo = localtime(&rawtime); strftime(buffer, 79, "%Y-%m/%d", timeinfo); |