fixed some GNU warnings

This commit is contained in:
Jeff Hill
2000-05-05 00:53:48 +00:00
parent aeda4c72cd
commit 9a6f2d4389
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ void CASG::reset ()
void CASG::show ( unsigned level) const
{
printf ("Sync Group: id=%u, magic=%lu, opPend=%lu, seqNo=%lu\n",
printf ("Sync Group: id=%u, magic=%u, opPend=%lu, seqNo=%lu\n",
this->getId (), this->magic, this->opPendCount, this->seqNo);
if ( level ) {
+1 -1
View File
@@ -26,7 +26,7 @@
* between the 1st and 2nd beacons)
*/
inline bhe::bhe (class cac &cacIn, const osiTime &initialTimeStamp, const inetAddrID &addr) :
cac (cacIn), inetAddrID (addr), piiu (0), timeStamp (initialTimeStamp), averagePeriod (-1.0)
inetAddrID (addr), cac (cacIn), piiu (0), timeStamp (initialTimeStamp), averagePeriod (-1.0)
{
# ifdef DEBUG
{
+1 -1
View File
@@ -15,7 +15,7 @@
tsFreeList < class netReadNotifyIO, 1024 > netReadNotifyIO::freeList;
netReadNotifyIO::netReadNotifyIO ( nciu &chan, cacNotify &notifyIn ) :
baseNMIU ( chan ), cacNotifyIO ( notifyIn )
cacNotifyIO ( notifyIn ), baseNMIU ( chan )
{
}
+2 -2
View File
@@ -16,8 +16,8 @@ tsFreeList < class netSubscription, 1024 > netSubscription::freeList;
netSubscription::netSubscription ( nciu &chan, chtype typeIn, unsigned long countIn,
unsigned short maskIn, cacNotify &notifyIn ) :
baseNMIU (chan), cacNotifyIO (notifyIn),
mask (maskIn), type (typeIn), count (countIn)
cacNotifyIO (notifyIn), baseNMIU (chan),
type (typeIn), count (countIn), mask (maskIn)
{
}
+1 -1
View File
@@ -15,7 +15,7 @@
tsFreeList < class netWriteNotifyIO, 1024 > netWriteNotifyIO::freeList;
netWriteNotifyIO::netWriteNotifyIO (nciu &chan, cacNotify &notifyIn) :
baseNMIU (chan), cacNotifyIO (notifyIn)
cacNotifyIO (notifyIn), baseNMIU (chan)
{
}