diff options
author | brian <brian@FreeBSD.org> | 1998-03-08 23:39:33 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-03-08 23:39:33 +0000 |
commit | 762d9b5e3c9d6366ceecb4fa154a06b0584be3a1 (patch) | |
tree | ee0aa6e374464a368a34c4d8f49f8801c4463d6d /usr.sbin/ppp/sig.c | |
parent | 05f2d83c904c326755187106e2440944ddbeab71 (diff) | |
download | FreeBSD-src-762d9b5e3c9d6366ceecb4fa154a06b0584be3a1.zip FreeBSD-src-762d9b5e3c9d6366ceecb4fa154a06b0584be3a1.tar.gz |
Explicitly call `caused' an `int'.
Sugested by: gcc-2.8
Diffstat (limited to 'usr.sbin/ppp/sig.c')
-rw-r--r-- | usr.sbin/ppp/sig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/sig.c b/usr.sbin/ppp/sig.c index a20a8b6..3cf1a30 100644 --- a/usr.sbin/ppp/sig.c +++ b/usr.sbin/ppp/sig.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: sig.c,v 1.11 1997/12/21 12:11:08 brian Exp $ */ #include <sys/types.h> @@ -35,7 +35,7 @@ #include "log.h" #include "sig.h" -static caused[NSIG]; /* An array of pending signals */ +static int caused[NSIG]; /* An array of pending signals */ static sig_type handler[NSIG]; /* all start at SIG_DFL */ |