use double not long double

This commit is contained in:
Jeff Hill
2000-03-01 00:19:45 +00:00
parent 9aa1dd1b1d
commit 3a832e9295
+3 -3
View File
@@ -51,15 +51,15 @@ void alarmCB (void *parg)
pCBS->done = 1;
}
void testTimer (fdctx *pfdm, long double delay)
void testTimer (fdctx *pfdm, double delay)
{
int status;
fdmgrAlarmId aid;
struct timeval tmo;
osiTime begin;
cbStruct cbs;
long double measuredDelay;
long double measuredError;
double measuredDelay;
double measuredError;
osiTimeGetCurrent (&begin);
cbs.done = 0;