diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-18 21:08:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-18 21:08:29 +0000 |
commit | 024260089ac38bdc8cbde65bdd047e6239fa8b46 (patch) | |
tree | 97f4f0ee6fc3b4d8085996c3164c8fd7df4697e0 /protocols/MSN/src | |
parent | ce782f801ada17e8d97c620b81d7701479d8e10d (diff) |
- Msn (temporary?) compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5738 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src')
-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;
|