Fix HP aCC warnings

This commit is contained in:
Ralph Lange
2002-10-11 09:19:29 +00:00
parent 7bf43f6dcc
commit 1ea0bcb7f3
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -318,7 +318,7 @@ caStatus casDGClient::versionAction ()
const caHdrLargeArray * mp = this->ctx.getMsg();
if ( mp->m_count != 0 ) {
this->minor_version_number = mp->m_count;
this->minor_version_number = static_cast <ca_uint16_t> ( mp->m_count );
if ( CA_V411 ( mp->m_count ) ) {
this->seqNoOfReq = mp->m_cid;
}
+2 -2
View File
@@ -248,7 +248,7 @@ private:
extern epicsSingleton < casBufferFactory > pGlobalBufferFactoryCAS;
class inBufClient {
class inBufClient { // X aCC 655
public:
enum fillCondition { casFillNone, casFillProgress,
casFillDisconnect };
@@ -339,7 +339,7 @@ private:
bufSizeT stack;
};
class outBufClient {
class outBufClient { // X aCC 655
public:
enum flushCondition { flushNone, flushProgress, flushDisconnect };
virtual unsigned getDebugLevel () const = 0;
+1 -1
View File
@@ -22,7 +22,7 @@
epicsSingleton < tsFreeList < ipIgnoreEntry, 1024 > > ipIgnoreEntry::pFreeList;
void ipIgnoreEntry::show ( unsigned level ) const
void ipIgnoreEntry::show ( unsigned /* level */ ) const
{
char buf[256];
struct sockaddr_in addr;