aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEException.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/CEException.cpp')
-rw-r--r--backends/wince/CEException.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/CEException.cpp b/backends/wince/CEException.cpp
index 1ef83342f8..59892b1173 100644
--- a/backends/wince/CEException.cpp
+++ b/backends/wince/CEException.cpp
@@ -139,8 +139,8 @@ bool CEException::writeException(TCHAR *path, EXCEPTION_POINTERS *exceptionPoint
SYSTEMTIME systemTime;
GetSystemTime(&systemTime);
- wsprintf(dumpFileName, TEXT("%s_%.2d_%.2d_%.4d_%.2d_%.2d_%.2d.txt"),
- path, systemTime.wDay, systemTime.wMonth, systemTime.wYear,
+ wsprintf(dumpFileName, TEXT("%s_%.2d_%.2d_%.4d_%.2d_%.2d_%.2d.txt"),
+ path, systemTime.wDay, systemTime.wMonth, systemTime.wYear,
systemTime.wHour, systemTime.wMinute, systemTime.wSecond);
dumpFile = CreateFile(dumpFileName, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (dumpFile == INVALID_HANDLE_VALUE)