issue #116: remove the using of sprintf_s, because it is VC specific

This commit is contained in:
Ming 2010-09-03 03:50:04 +00:00
parent 37ea7dd914
commit c549d497a6
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ void CCTextureCache::purgeSharedTextureCache()
char * CCTextureCache::description()
{
char *ret = new char[100];
sprintf_s(ret, 100, "<CCTextureCache | Number of textures = %u>", m_pTextures->count());
sprintf(ret, "<CCTextureCache | Number of textures = %u>", m_pTextures->count());
return ret;
}