From 25e533d3e57cb6f0c2f4c2b41f188dcdce7d59b5 Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Sat, 2 Mar 2013 22:28:20 +0000 Subject: [PATCH] Polish few spaces/tabs. --- sys/sys/time.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/time.h b/sys/sys/time.h index 555c37ef5cf..a735ad80f7d 100644 --- a/sys/sys/time.h +++ b/sys/sys/time.h @@ -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);