summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/lib/utvtoa.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/xntpd/lib/utvtoa.c')
-rw-r--r--usr.sbin/xntpd/lib/utvtoa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/xntpd/lib/utvtoa.c b/usr.sbin/xntpd/lib/utvtoa.c
index b573f18..48310a8 100644
--- a/usr.sbin/xntpd/lib/utvtoa.c
+++ b/usr.sbin/xntpd/lib/utvtoa.c
@@ -1,4 +1,4 @@
-/* utvtoa.c,v 3.1 1993/07/06 01:08:55 jbj Exp
+/*
* utvtoa - return an asciized representation of an unsigned struct timeval
*/
#include <stdio.h>
@@ -15,7 +15,7 @@ utvtoa(tv)
LIB_GETBUF(buf);
- (void) sprintf(buf, "%lu.%06lu", (U_LONG)tv->tv_sec,
- (U_LONG)tv->tv_usec);
+ (void) sprintf(buf, "%lu.%06lu", (u_long)tv->tv_sec,
+ (u_long)tv->tv_usec);
return buf;
}
OpenPOWER on IntegriCloud