fix for compiler warnings in mantis 337

This commit is contained in:
Jeff Hill
2009-07-07 23:54:41 +00:00
parent 0e4891201e
commit 162fa000c8
2 changed files with 3 additions and 3 deletions

View File

@@ -155,8 +155,9 @@ void dbContextReadNotifyCacheAllocator::show ( unsigned level ) const
pNext = _pReadNotifyCache->pNext;
count++;
}
printf ( "\tcount %u and size %lu\n",
count, _readNotifyCacheSize );
printf ( "\tcount %lu and size %lu\n",
static_cast < unsigned long > ( count ),
_readNotifyCacheSize );
}
}