From 86e71a90b04ce26198013bdc5c94f8f33e5967b9 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 19 Oct 2004 20:52:33 +0000 Subject: [PATCH] no need to print channelname in show routine --- src/ca/syncGroupReadNotify.cpp | 5 ++--- src/ca/syncGroupWriteNotify.cpp | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/ca/syncGroupReadNotify.cpp b/src/ca/syncGroupReadNotify.cpp index 6db733cfd..075de038f 100644 --- a/src/ca/syncGroupReadNotify.cpp +++ b/src/ca/syncGroupReadNotify.cpp @@ -119,9 +119,8 @@ void syncGroupReadNotify::show ( { ::printf ( "pending sg read op: pVal=%p\n", this->pValue ); if ( level > 0u ) { - ::printf ( "pending sg op: chan=%s magic=%u sg=%p\n", - this->chan->pName(guard), this->magic, - static_cast < void * > ( & this->sg ) ); + ::printf ( "pending sg op: magic=%u sg=%p\n", + this->magic, static_cast < void * > ( & this->sg ) ); } } diff --git a/src/ca/syncGroupWriteNotify.cpp b/src/ca/syncGroupWriteNotify.cpp index 7082c7516..9cdd6c90a 100644 --- a/src/ca/syncGroupWriteNotify.cpp +++ b/src/ca/syncGroupWriteNotify.cpp @@ -110,8 +110,7 @@ void syncGroupWriteNotify::show ( ::printf ( "pending write sg op\n" ); if ( level > 0u ) { ::printf ( "pending sg op: chan=%s magic=%u sg=%p\n", - this->chan->pName(guard), this->magic, - static_cast < void * > ( &this->sg ) ); + this->magic, static_cast < void * > ( &this->sg ) ); } }