summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/util/timetrim.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/xntpd/util/timetrim.c')
-rw-r--r--usr.sbin/xntpd/util/timetrim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/xntpd/util/timetrim.c b/usr.sbin/xntpd/util/timetrim.c
index a1635c1..7b9413f 100644
--- a/usr.sbin/xntpd/util/timetrim.c
+++ b/usr.sbin/xntpd/util/timetrim.c
@@ -1,6 +1,6 @@
/*
* timetrim.c
- *
+ *
* "timetrim" allows setting and adjustment of the system clock frequency
* trim parameter on Silicon Graphics machines. The trim value native
* units are nanoseconds per second (10**-9), so a trim value of 1 makes
@@ -8,7 +8,7 @@
* of zero. Xntpd currently uses units of 2**-20 secs for its frequency
* offset (drift) values; to convert to a timetrim value, multiply by
* 1E9 / 2**20 (about 954).
- *
+ *
* "timetrim" with no arguments just prints out the current kernel value.
* With a numeric argument, the kernel value is set to the supplied value.
* The "-i" flag causes the supplied value to be added to the kernel value.
@@ -17,7 +17,7 @@
*
* Note that there is a limit of +-3000000 (0.3%) on the timetrim value
* which is (silently?) enforced by the kernel.
- *
+ *
*/
#include <stdio.h>
@@ -37,7 +37,7 @@ char **argv;
int c, incremental = 0, ntpunits = 0;
LONG timetrim;
double value, strtod();
-
+
while (--argc && **++argv == '-' && isalpha(argv[0][1])) {
switch (argv[0][1]) {
case 'i':
OpenPOWER on IntegriCloud