diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 19:20:06 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 19:20:06 +0000 |
commit | 46eff0941450114f9dda873037d6744263dc9ad0 (patch) | |
tree | 2582c1c5f9dabc73c98b598b18d3874b2105c8ad /src/core | |
parent | 58973a21a30bf95427fd43c456e41e35c386218c (diff) |
small portion of "#ifsef Unicode" removal
git-svn-id: http://svn.miranda-ng.org/main/trunk@435 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/miranda.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/miranda.cpp b/src/core/miranda.cpp index 5bcf10285f..3a3ce614a3 100644 --- a/src/core/miranda.cpp +++ b/src/core/miranda.cpp @@ -763,7 +763,7 @@ static INT_PTR GetMirandaVersionText(WPARAM wParam, LPARAM lParam) VerQueryValue(pVerInfo, _T("\\StringFileInfo\\000004b0\\ProductVersion"), (LPVOID*)&productVersion, &blockSize);
#if defined( _WIN64 )
mir_snprintf(( char* )lParam, wParam, "%S x64 Unicode", productVersion );
-#elif defined( _UNICODE )
+#else defined( _UNICODE )
mir_snprintf(( char* )lParam, wParam, "%S Unicode", productVersion );
#endif
mir_free(pVerInfo);
|