fixed warnings

This commit is contained in:
Jeff Hill
1998-10-27 18:28:20 +00:00
parent c425cea48d
commit 5c9baa5d00
3 changed files with 13 additions and 4 deletions

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.12 1998/10/23 00:28:19 jhill
* fixed HP-UX warnings
*
* Revision 1.11 1998/05/29 20:13:42 jhill
* made assert() call portable to 64 bit arch
*
@@ -169,7 +172,7 @@ haveBeenInitialized (FALSE)
return;
}
status = casEventRegistry::init ();
status = casEventRegistry::initRegistry ();
if (status) {
errMessage (status, "CA server event registry init");
return;

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.8 1998/05/05 16:26:31 jhill
* fixed warnings
*
* Revision 1.7 1997/08/05 00:47:07 jhill
* fixed warnings
*
@@ -102,9 +105,9 @@ main ()
#endif
//
// casEventRegistry::init()
// casEventRegistry::initRegistry()
//
int casEventRegistry::init()
int casEventRegistry::initRegistry()
{
if (!this->hasBeenInitialized) {
int status;

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.27 1998/10/23 00:28:21 jhill
* fixed HP-UX warnings
*
* Revision 1.26 1998/09/24 20:41:49 jhill
* supply resource id to logBadIdWithFileAndLineno()
*
@@ -855,7 +858,7 @@ public:
casEventRegistry(osiMutex &mutexIn) :
mutex(mutexIn), allocator(0), hasBeenInitialized(0) {}
int init();
int initRegistry();
virtual ~casEventRegistry();