diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-15 21:31:54 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-15 21:31:54 +0000 |
commit | 6b27aa506d7b45ce503d0a546cbe9d13746c2be3 (patch) | |
tree | 5214365bf5c39617112af57eaf060fe7291d3653 /src/mir_core/memory.cpp | |
parent | e2aa05a51283cd80febe5aa150568dd127d14bea (diff) |
Unicode translation for Import
git-svn-id: http://svn.miranda-ng.org/main/trunk@1952 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/mir_core/memory.cpp')
-rw-r--r-- | src/mir_core/memory.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mir_core/memory.cpp b/src/mir_core/memory.cpp index 0ecddc6717..3ba3a11b56 100644 --- a/src/mir_core/memory.cpp +++ b/src/mir_core/memory.cpp @@ -224,9 +224,7 @@ MIR_CORE_DLL(int) mir_vsnprintf(char *buffer, size_t count, const char* fmt, va_ MIR_CORE_DLL(int) mir_vsntprintf(TCHAR *buffer, size_t count, const TCHAR* fmt, va_list va)
{
- int len;
-
- len = _vsntprintf(buffer, count-1, fmt, va);
+ int len = _vsntprintf(buffer, count-1, fmt, va);
buffer[count-1] = 0;
return len;
}
|