From 8cb83247b99409d922d3d2022f8af0815f88bcbd Mon Sep 17 00:00:00 2001 From: bde Date: Thu, 7 Dec 1995 14:47:36 +0000 Subject: Fixed the type of a signal handler. --- usr.sbin/xntpd/xntpd/ntp_loopfilter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/xntpd') diff --git a/usr.sbin/xntpd/xntpd/ntp_loopfilter.c b/usr.sbin/xntpd/xntpd/ntp_loopfilter.c index 69939ec..f2866d5 100644 --- a/usr.sbin/xntpd/xntpd/ntp_loopfilter.c +++ b/usr.sbin/xntpd/xntpd/ntp_loopfilter.c @@ -139,7 +139,7 @@ extern int sigvec P((int, struct sigvec *, struct sigvec *)); #ifndef NTP_SYSCALLS_LIBC extern int syscall P((int, void *, ...)); #endif /* no NTP syscalls in libc */ -void pll_trap P((void)); +void pll_trap P((int)); static struct sigvec sigsys; /* current sigvec status */ static struct sigvec newsigsys; /* new sigvec status */ @@ -713,7 +713,7 @@ loop_config(item, lfp_value, int_value) * the stock adjtime() syscall and a lot of indelicate abuse. */ RETSIGTYPE -pll_trap() +pll_trap(int sig) { pll_control = 0; } -- cgit v1.1