From 4e8d1c0ed95fda26a5d0a5fd6f8ef00feed8eae7 Mon Sep 17 00:00:00 2001 From: brianluau Date: Mon, 29 Oct 2012 07:07:37 +0000 Subject: - Fixed warnings from r16835. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16836 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/chrif.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/map/chrif.c b/src/map/chrif.c index 9a4cb1554..8feab38d5 100644 --- a/src/map/chrif.c +++ b/src/map/chrif.c @@ -835,11 +835,11 @@ static void chrif_char_ask_name_answer(int acc, const char* player_name, uint16 return; } - if(type>0 && type<=5) - sprintf(action,msg_txt(427+type)); //block|ban|unblock|unban|change the sex of - else - sprintf(action,"???"); - + if(type>0 && type<=5) + action = msg_txt(427+type); //block|ban|unblock|unban|change the sex of + else + action = "???"; + switch( answer ) { case 0 : sprintf(output, msg_txt(424), action, NAME_LENGTH, player_name); break; case 1 : sprintf(output, msg_txt(425), NAME_LENGTH, player_name); break; -- cgit v1.2.3-70-g09d2