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
-1
View File
@@ -33,7 +33,6 @@
#include "caerr.h" // should be eliminated here in the future
#include "epicsEvent.h"
#include "epicsThread.h"
#include "epicsSingleton.h"
#define epicsExportSharedSymbols
#include "db_access_routines.h"
+3 -2
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 );
}
}