added arg to serverToolDebugFunc()

This commit is contained in:
Jeff Hill
1996-09-04 20:12:04 +00:00
parent 8c8b971221
commit 2ccaa6dcb6

View File

@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.3 1996/08/13 22:56:12 jhill
* added init for mutex class
*
* Revision 1.2 1996/08/05 19:25:17 jhill
* removed unused code
*
@@ -300,10 +303,10 @@ void casVerifyFunc(const char *pFile, unsigned line, const char *pExp)
//
// serverToolDebugFunc()
//
void serverToolDebugFunc(const char *pFile, unsigned line)
void serverToolDebugFunc(const char *pFile, unsigned line, const char *pComment)
{
fprintf(stderr,
"Bad server tool response detected at line %u in \"%s\"\n",
line, pFile);
"Bad server tool response detected at line %u in \"%s\" because \"%s\"\n",
line, pFile, pComment);
}