fixed borland warning

This commit is contained in:
Jeff Hill
2001-01-22 23:00:13 +00:00
parent 57bf87beac
commit abe1bc9e98
6 changed files with 52 additions and 25 deletions

View File

@@ -135,9 +135,8 @@ int epicsShareAPI ca_sg_stat ( const CA_SYNC_GID gid )
{
CASG *pcasg;
cac *pcac;
int caStatus;
caStatus = fetchClientContext (&pcac);
int caStatus = fetchClientContext (&pcac);
if ( caStatus != ECA_NORMAL ) {
return caStatus;
}
@@ -145,7 +144,7 @@ int epicsShareAPI ca_sg_stat ( const CA_SYNC_GID gid )
pcasg = pcac->lookupCASG ( gid );
if ( ! pcasg ) {
printf("Bad Sync Group Id\n");
caStatus = ECA_BADSYNCGRP;
return ECA_BADSYNCGRP;
}
pcasg->show (1000u);