diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-03-27 07:55:13 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-03-27 07:55:13 +0000 |
commit | 50c5a4df6a314b42a695f6e53a2df10c7d20aba4 (patch) | |
tree | 448dfea912b993ac5c5b80a617b6904e41968fc8 /src/modules/langpack | |
parent | e332a5a5fdf2ee15fe883a3b309a1dac701be0d4 (diff) |
last field is not needed
git-svn-id: http://svn.miranda-ng.org/main/trunk@8769 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/langpack')
-rw-r--r-- | src/modules/langpack/langpack.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/langpack/langpack.cpp b/src/modules/langpack/langpack.cpp index c378373e45..728e48db43 100644 --- a/src/modules/langpack/langpack.cpp +++ b/src/modules/langpack/langpack.cpp @@ -74,7 +74,7 @@ BOOL EnumLangpacks(ENUM_PACKS_CALLBACK callback, WPARAM wParam, LPARAM lParam) lstrcpyA(pack.szAuthors, "Miranda NG Development Team");
lstrcpyA(pack.szAuthorEmail, "project-info@miranda-ng.org");
DWORD v = CallService(MS_SYSTEM_GETVERSION, 0, 0);
- mir_snprintf(pack.szLastModifiedUsing, sizeof(pack.szLastModifiedUsing), "%d.%d.%d.%d", ((v >> 24) & 0xFF), ((v >> 16) & 0xFF), ((v >> 8) & 0xFF), (v & 0xFF));
+ mir_snprintf(pack.szLastModifiedUsing, sizeof(pack.szLastModifiedUsing), "%d.%d.%d", ((v >> 24) & 0xFF), ((v >> 16) & 0xFF), ((v >> 8) & 0xFF));
/* file date */
if (GetModuleFileName(NULL, pack.tszFullPath, SIZEOF(pack.tszFullPath))) {
lstrcpy(pack.tszFileName, _tcsrchr(pack.tszFullPath, '\\') + 1);
|