From cbb652bcce8d23ac02dc5eb4c36beba115da7ca2 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 21 Aug 2002 16:25:14 +0000 Subject: [PATCH] use enum for enumerated variable --- src/cas/generic/casPVIIL.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cas/generic/casPVIIL.h b/src/cas/generic/casPVIIL.h index 61b383e20..3c8bd451c 100644 --- a/src/cas/generic/casPVIIL.h +++ b/src/cas/generic/casPVIIL.h @@ -61,7 +61,7 @@ inline void casPVI::unregisterIO() // inline caStatus casPVI::bestDBRType ( unsigned &dbrType ) // X aCC 361 { - unsigned bestAIT = this->bestExternalType (); + aitEnum bestAIT = this->bestExternalType (); if ( bestAIT < NELEMENTS ( gddAitToDbr ) && bestAIT != aitEnumInvalid ) { dbrType = gddAitToDbr[bestAIT];