From eeaf3af7a43a2731a4a467006e38ce531614131b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 17 Apr 2001 17:36:37 +0000 Subject: [PATCH] fixed sun pro warning --- src/ca/netSubscription.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/netSubscription.cpp b/src/ca/netSubscription.cpp index 652767196..fb49583d6 100644 --- a/src/ca/netSubscription.cpp +++ b/src/ca/netSubscription.cpp @@ -66,9 +66,9 @@ void netSubscription::completion ( unsigned typeIn, } void netSubscription::exception ( int status, - const char *pContext, unsigned type, unsigned long count ) + const char *pContext, unsigned typeIn, unsigned long countIn ) { - this->notify.exception ( status, pContext, type, count ); + this->notify.exception ( status, pContext, typeIn, countIn ); }