* Fixed: wrong arg name for va_start call in WorldSession::SendNotification.

This commit is contained in:
VladimirMangos 2008-10-19 02:23:51 +04:00
parent cf6413edcc
commit 157134a0a7

View file

@ -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);