Fixed/suppressed HP-UX native (aCC) warnings

This commit is contained in:
Ralph Lange
2003-04-23 14:56:07 +00:00
parent 154ebd3153
commit 2624a16170
6 changed files with 32 additions and 27 deletions

View File

@@ -76,7 +76,7 @@ extern "C" void epicsShareAPI ca_dump_dbr (
dbr_short_t *pvalue = (dbr_short_t *)pbuffer;
for (i = 0; i < count; i++,pvalue++){
if(count!=1 && (i%10 == 0)) printf("\n");
printf("%d ",*(short *)pvalue);
printf("%d ",* (short *)pvalue); // X aCC 392
}
break;
}
@@ -94,7 +94,7 @@ extern "C" void epicsShareAPI ca_dump_dbr (
dbr_float_t *pvalue = (dbr_float_t *)pbuffer;
for (i = 0; i < count; i++,pvalue++){
if(count!=1 && (i%10 == 0)) printf("\n");
printf("%6.4f ",*(float *)pvalue);
printf("%6.4f ",*(float *)pvalue); // X aCC 392
}
break;
}