- Fixed warnings from r16835.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16836 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
brianluau 2012-10-29 07:07:37 +00:00
parent 7a6a529548
commit cea840e1f9

View File

@ -836,9 +836,9 @@ static void chrif_char_ask_name_answer(int acc, const char* player_name, uint16
}
if(type>0 && type<=5)
sprintf(action,msg_txt(427+type)); //block|ban|unblock|unban|change the sex of
action = msg_txt(427+type); //block|ban|unblock|unban|change the sex of
else
sprintf(action,"???");
action = "???";
switch( answer ) {
case 0 : sprintf(output, msg_txt(424), action, NAME_LENGTH, player_name); break;