diff options
author | brian <brian@cvs.openbsd.org> | 1998-03-08 23:32:15 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 1998-03-08 23:32:15 +0000 |
commit | 7e90f55a388536d2f4b83cfce6056af02a09b098 (patch) | |
tree | 23fea431c7b5b8942e3067edeafdf6ae2f0ed645 /usr.sbin/ppp | |
parent | 4d07bf65287745a0d6d66bc6b72345f0c98b48d7 (diff) |
Please gcc 2.8
Diffstat (limited to 'usr.sbin/ppp')
-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 109906dac99..3061c39538a 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: sig.c,v 1.2 1997/12/21 14:27:14 brian Exp $ + * $Id: sig.c,v 1.3 1998/03/08 23:32:14 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 */ |