summaryrefslogtreecommitdiff
path: root/src/mir_core/memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mir_core/memory.cpp')
-rw-r--r--src/mir_core/memory.cpp4
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;
}