summaryrefslogtreecommitdiffstats
path: root/common/rfb/Logger_file.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/Logger_file.cxx')
-rw-r--r--common/rfb/Logger_file.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/common/rfb/Logger_file.cxx b/common/rfb/Logger_file.cxx
index 8a109e4a..ebe15d52 100644
--- a/common/rfb/Logger_file.cxx
+++ b/common/rfb/Logger_file.cxx
@@ -61,13 +61,11 @@ void Logger_File::write(int level, const char *logname, const char *message)
if (!m_file) return;
}
-#ifndef _WIN32_WCE
time_t current = time(0);
if (current != m_lastLogTime) {
m_lastLogTime = current;
fprintf(m_file, "\n%s", ctime(&m_lastLogTime));
}
-#endif
fprintf(m_file," %s:", logname);
int column = strlen(logname) + 2;