Sfoglia il codice sorgente

- Fixed undefined reference when compiling under Linux (patch for r15017)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@15018 54d463be-8e91-2dee-dedb-b68131a5f0ec
epoque11 13 anni fa
parent
commit
d0ffc2423c
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/map/npc.c

+ 2 - 2
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);
 			}
 		}