summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SmileyAdd/src')
-rw-r--r--plugins/SmileyAdd/src/bkstring.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SmileyAdd/src/bkstring.cpp b/plugins/SmileyAdd/src/bkstring.cpp
index f6d3270fef..dc8d653e84 100644
--- a/plugins/SmileyAdd/src/bkstring.cpp
+++ b/plugins/SmileyAdd/src/bkstring.cpp
@@ -39,7 +39,7 @@ void bkstring::appendfmt(const value_type *fmt, ...)
va_start(vararg, fmt);
for (;;)
{
- int len = _vsntprintf(buf + lenBuf, sizeAlloced - lenBuf - 1, fmt, vararg);
+ int len = mir_vsntprintf(buf + lenBuf, sizeAlloced - lenBuf - 1, fmt, vararg);
if (len < 0)
reserve(sizeAlloced + 256);
else