mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-18 22:19:54 -04:00
Core/Misc: Fix warning
This commit is contained in:
@@ -1199,7 +1199,8 @@ char* ChatHandler::extractQuotedArg(char* args)
|
||||
if (*(args + 1) == '"')
|
||||
{
|
||||
strtok(args, " ");
|
||||
return "";
|
||||
char arg[] = "";
|
||||
return arg;
|
||||
}
|
||||
else
|
||||
return strtok(args + 1, "\"");
|
||||
|
||||
Reference in New Issue
Block a user