From 09d516ff05130d881eb4f532e27792f2ee78423f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 20 Dec 2002 02:20:03 +0000 Subject: [PATCH] fixed sun pro warning --- src/cas/generic/casStrmClient.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cas/generic/casStrmClient.cc b/src/cas/generic/casStrmClient.cc index a0c56ea9f..76820682d 100644 --- a/src/cas/generic/casStrmClient.cc +++ b/src/cas/generic/casStrmClient.cc @@ -506,11 +506,11 @@ static smartGDDPointer createDBRDD ( unsigned dbrType, unsigned elemCount ) // fix the enum string table element count // (this is done here because the application type table in gdd - // does not appera to handle this correctly) + // does not appear to handle this correctly) if ( dbrType == DBR_CTRL_ENUM || dbrType == DBR_GR_ENUM ) { - bool success = convertContainerMemberToAtomic ( + bool tmpSuccess = convertContainerMemberToAtomic ( *pDescRet, gddAppType_enums, MAX_ENUM_STATES ); - if ( ! success ) { + if ( ! tmpSuccess ) { return NULL; } }