diff options
| author | John Polstra <jdp@FreeBSD.org> | 1999-05-21 16:10:44 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1999-05-21 16:10:44 +0000 |
| commit | 57e60f25064436ab0978d5ad5466ec77366ad14f (patch) | |
| tree | aa1af6f0187651125232055edfb6c2cab26d4de1 | |
| parent | 925fa5c3f50d1be47d51704cd3fb2b4cd07d969f (diff) | |
Notes
| -rw-r--r-- | usr.sbin/xntpd/xntpdc/ntpdc_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/xntpd/xntpdc/ntpdc_ops.c b/usr.sbin/xntpd/xntpdc/ntpdc_ops.c index 7010f9b47e48..600d5c97f8e1 100644 --- a/usr.sbin/xntpd/xntpdc/ntpdc_ops.c +++ b/usr.sbin/xntpd/xntpdc/ntpdc_ops.c @@ -2396,7 +2396,7 @@ kerninfo(pcmd, fp) * pll variables */ (void)fprintf(fp, "pll offset: %ld us\n", - (u_long)ntohl(ik->offset)); + (long)(int32_t)ntohl(ik->offset)); (void)fprintf(fp, "pll frequency: %s ppm\n", fptoa((s_fp)ntohl(ik->freq), 3)); (void)fprintf(fp, "maximum error: %ld us\n", |
