diff options
author | Brian Somers <brian@FreeBSD.org> | 1998-03-08 23:39:33 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 1998-03-08 23:39:33 +0000 |
commit | 748496456a86d200ad2d1fdbb5bc5fbe6b483d99 (patch) | |
tree | 4f969625d2e4a56105daa7707fa9e14bc2e6a18a /usr.sbin/ppp/sig.c | |
parent | 5f160d14542591994745b624cb6dc342ef343c53 (diff) | |
download | src-748496456a86d200ad2d1fdbb5bc5fbe6b483d99.tar.gz src-748496456a86d200ad2d1fdbb5bc5fbe6b483d99.zip |
Explicitly call `caused' an `int'.
Sugested by: gcc-2.8
Notes
Notes:
svn path=/head/; revision=34331
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 a20a8b608b54..3cf1a30b3e03 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 */ |