[6922] Whitespace and newline fixes

This should fix the GCC "no newline at end of file" warnings.

Signed-off-by: freghar <compmancz@gmail.com>
This commit is contained in:
freghar 2008-12-19 23:25:20 +01:00 committed by tomrus88
parent ba868910e2
commit d75812749f
7 changed files with 16 additions and 16 deletions

View file

@ -984,7 +984,7 @@ void WorldSession::HandleChangePlayerNameOpcode(WorldPacket& recv_data)
// and that there is no character with the desired new name
CharacterDatabase.AsyncPQuery(&WorldSession::HandleChangePlayerNameOpcodeCallBack,
GetAccountId(), newname,
"SELECT guid, name FROM characters WHERE guid = %d AND account = %d AND (at_login & %d) = %d AND NOT EXISTS (SELECT NULL FROM characters WHERE name = '%s')",
"SELECT guid, name FROM characters WHERE guid = %d AND account = %d AND (at_login & %d) = %d AND NOT EXISTS (SELECT NULL FROM characters WHERE name = '%s')",
GUID_LOPART(guid), GetAccountId(), AT_LOGIN_RENAME, AT_LOGIN_RENAME, escaped_newname.c_str()
);
}