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:
@ -116,7 +116,7 @@ ITicTacToe::ITicTacToe (pfGmTicTacToe * gameCli)
|
||||
: gameCli(gameCli)
|
||||
{
|
||||
// Fill the board with space chars
|
||||
MemSet(board, ' ', sizeof(board));
|
||||
memset(board, ' ', sizeof(board));
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
|
Reference in New Issue
Block a user