diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-21 18:08:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-21 18:08:38 +0300 |
commit | 03ba85dcd2d47cf31d6181b40620e278f7f30427 (patch) | |
tree | b094d6ec3070821a67455d4812d7776888eac803 /protocols/IRCG/src | |
parent | d15ac078344461faee80f676b49d2194387b9862 (diff) |
more warnings fixed
Diffstat (limited to 'protocols/IRCG/src')
-rw-r--r-- | protocols/IRCG/src/tools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IRCG/src/tools.cpp b/protocols/IRCG/src/tools.cpp index ea2fab0673..3efe9a248e 100644 --- a/protocols/IRCG/src/tools.cpp +++ b/protocols/IRCG/src/tools.cpp @@ -619,7 +619,7 @@ void CIrcProto::DoUserhostWithReason(int type, CMStringW reason, bool bSendComma }
va_list ap;
- va_start(ap, &userhostparams);
+ va_start(ap, userhostparams);
mir_vsnwprintf(temp, _countof(temp), (S + L" " + userhostparams).c_str(), ap);
va_end(ap);
|