diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/MSN/src/ezxml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/MSN/src/ezxml.c b/protocols/MSN/src/ezxml.c index 9e166afa6f..41ef70598e 100644 --- a/protocols/MSN/src/ezxml.c +++ b/protocols/MSN/src/ezxml.c @@ -147,10 +147,10 @@ ezxml_t ezxml_err(ezxml_root_t root, char *s, const char *err, ...) char *t, fmt[EZXML_ERRL];
for (t = root->s; t < s; t++) if (*t == '\n') line++;
- mir_snprintf(fmt, EZXML_ERRL, "[error near line %d]: %s", line, err);
+ _snprintf(fmt, EZXML_ERRL, "[error near line %d]: %s", line, err);
va_start(ap, err);
- mir_vsnprintf(root->err, EZXML_ERRL, fmt, ap);
+ _vsnprintf(root->err, EZXML_ERRL, fmt, ap);
va_end(ap);
return &root->xml;
|