diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-13 05:00:57 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-06-13 05:00:57 +0000 |
commit | cc28e7f29c421fb5eb9b6f27b7852e8df8718b2f (patch) | |
tree | 73855167aeffd4fbd285e776fefa8691f9ddf452 /src/map/atcommand.c | |
parent | 0580db8bf96e58c76f0b743003fb707a8dc2e4de (diff) | |
download | hercules-cc28e7f29c421fb5eb9b6f27b7852e8df8718b2f.tar.gz hercules-cc28e7f29c421fb5eb9b6f27b7852e8df8718b2f.tar.bz2 hercules-cc28e7f29c421fb5eb9b6f27b7852e8df8718b2f.tar.xz hercules-cc28e7f29c421fb5eb9b6f27b7852e8df8718b2f.zip |
Changed a few sprintf's that had no format arguments to strcpy's.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13887 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 54e826913..16fe6ee28 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -2713,7 +2713,7 @@ int atcommand_produce(const int fd, struct map_session_data* sd, const char* com if ((item_data = itemdb_searchname(item_name)) == NULL && (item_data = itemdb_exists(atoi(item_name))) == NULL) { - sprintf(atcmd_output, msg_txt(170)); // The item is not equipable. + strcpy(atcmd_output, msg_txt(170)); // The item is not equipable. clif_displaymessage(fd, atcmd_output); return -1; } |