Polish few spaces/tabs.

This commit is contained in:
Alexander Motin 2013-03-02 22:28:20 +00:00
parent d4d29475e6
commit 25e533d3e5

View File

@ -113,7 +113,7 @@ bintime_mul(struct bintime *bt, u_int x)
#define SBT_1M (SBT_1S * 60)
#define SBT_1MS (SBT_1S / 1000)
#define SBT_1US (SBT_1S / 1000000)
#define SBT_1NS (SBT_1S / 1000000000)
#define SBT_1NS (SBT_1S / 1000000000)
static __inline int
sbintime_getsec(sbintime_t sbt)
@ -133,7 +133,7 @@ static __inline struct bintime
sbttobt(sbintime_t sbt)
{
struct bintime bt;
bt.sec = sbt >> 32;
bt.frac = sbt << 32;
return (bt);