From 9e404a1d5018b771ff55d7e96d86be04046728dd Mon Sep 17 00:00:00 2001 From: epoque11 Date: Tue, 6 Dec 2011 17:29:53 +0000 Subject: - Fixed undefined reference when compiling under Linux (patch for r15017) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15018 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/npc.c') diff --git a/src/map/npc.c b/src/map/npc.c index 5869c6daa..7c60e462f 100644 --- a/src/map/npc.c +++ b/src/map/npc.c @@ -1442,7 +1442,7 @@ static int npc_selllist_sub(struct map_session_data* sd, int n, unsigned short* for( j = 0; MAX_SLOTS > j; j++ ) {// clear each of the card slot entries - sprintf_s(card_slot, sizeof(card_slot), "@sold_card%d", j + 1); + snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1); script_cleararray_pc(sd, card_slot, (void*)0); } @@ -1462,7 +1462,7 @@ static int npc_selllist_sub(struct map_session_data* sd, int n, unsigned short* for( j = 0; MAX_SLOTS > j; j++ ) {// store each of the cards from the equipment in the array - sprintf_s(card_slot, sizeof(card_slot), "@sold_card%d", j + 1); + snprintf(card_slot, sizeof(card_slot), "@sold_card%d", j + 1); script_setarray_pc(sd, card_slot, i, (void*)(intptr_t)sd->status.inventory[idx].card[j], &key_card); } } -- cgit v1.2.3-60-g2f50