1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 18:59:09 +00:00

Replace MemSet with memset.

This commit is contained in:
Darryl Pogue
2012-01-21 15:39:10 -08:00
committed by Adam Johnson
parent 12ac9a79be
commit f4ff65ccbc
8 changed files with 12 additions and 12 deletions

View File

@ -116,7 +116,7 @@ ITicTacToe::ITicTacToe (pfGmTicTacToe * gameCli)
: gameCli(gameCli)
{
// Fill the board with space chars
MemSet(board, ' ', sizeof(board));
memset(board, ' ', sizeof(board));
}
//============================================================================