fix ssprintf

This commit is contained in:
Glenn Maynard
2005-05-20 03:52:48 +00:00
parent e1c1a6db20
commit 52fd05751f
+1 -1
View File
@@ -719,7 +719,7 @@ void SongManager::Invalidate( Song *pStaleSong )
if( pTrail != NULL ) { \
map<Trail*,TrailIDAndCourse>::iterator it; \
it = mapOldTrailToTrailIDAndCourse.find(pTrail); \
ASSERT_M( it != mapOldTrailToTrailIDAndCourse.end(), ssprintf("%p", pTrail) ); \
ASSERT_M( it != mapOldTrailToTrailIDAndCourse.end(), ssprintf("%p", pTrail.Get()) ); \
const TrailIDAndCourse &tidc = it->second; \
const TrailID &id = tidc.first; \
const Course *pCourse = tidc.second; \