mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
* Fixed: wrong arg name for va_start call in WorldSession::SendNotification.
This commit is contained in:
parent
cf6413edcc
commit
157134a0a7
1 changed files with 1 additions and 1 deletions
|
|
@ -447,7 +447,7 @@ void WorldSession::SendNotification(int32 string_id,...)
|
|||
va_list ap;
|
||||
char szStr [1024];
|
||||
szStr[0] = '\0';
|
||||
va_start(ap, format);
|
||||
va_start(ap, string_id);
|
||||
vsnprintf( szStr, 1024, format, ap );
|
||||
va_end(ap);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue