cosmetic changes

This commit is contained in:
Jeff Hill
1999-08-05 17:30:53 +00:00
parent 754f46ab7d
commit 47efdd2569

View File

@@ -7,6 +7,7 @@
#include <tickLib.h>
#include <sysLib.h>
//
// osiTime::synchronize()
//
@@ -29,9 +30,8 @@ osiTime osiTime::osdGetCurrent ()
// for the EPICS epoch
//
ticks = tickGet();
sec = ticks/rate;
nsec = (ticks%rate)*(nSecPerSec/rate);
sec = ticks / rate;
nsec = (ticks % rate) * (nSecPerSec / rate);
return osiTime(sec, nsec);
return osiTime (sec, nsec);
}