Missed some warnings...

This commit is contained in:
briggs 1994-05-06 17:38:38 +00:00
parent 2998461b9c
commit 397e0acc8d
2 changed files with 14 additions and 6 deletions

View File

@ -36,13 +36,16 @@
/*
* ASC driver code and asc_ringbell() support
*
* $Id: asc.c,v 1.2 1994/05/06 03:34:53 briggs Exp $
* $Id: asc.c,v 1.3 1994/05/06 17:38:38 briggs Exp $
*
* 12/12/93 01:14:45 grantham
* initial revision
*
* $Log: asc.c,v $
* Revision 1.2 1994/05/06 03:34:53 briggs
* Revision 1.3 1994/05/06 17:38:38 briggs
* Missed some warnings...
*
* Revision 1.2 1994/05/06 03:34:53 briggs
* Clean up some warnings, mainly w/ timeout().
*
* Revision 1.1 1993/12/21 03:16:05 briggs
@ -54,6 +57,7 @@
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/param.h>
@ -181,5 +185,5 @@ int asc_ringbell()
}
bell_ringing++;
timeout(asc_bellstop, 0, bell_length);
timeout((void *) asc_bellstop, 0, bell_length);
}

View File

@ -36,13 +36,16 @@
/*
* ASC driver code and asc_ringbell() support
*
* $Id: asc.c,v 1.2 1994/05/06 03:34:53 briggs Exp $
* $Id: asc.c,v 1.3 1994/05/06 17:38:38 briggs Exp $
*
* 12/12/93 01:14:45 grantham
* initial revision
*
* $Log: asc.c,v $
* Revision 1.2 1994/05/06 03:34:53 briggs
* Revision 1.3 1994/05/06 17:38:38 briggs
* Missed some warnings...
*
* Revision 1.2 1994/05/06 03:34:53 briggs
* Clean up some warnings, mainly w/ timeout().
*
* Revision 1.1 1993/12/21 03:16:05 briggs
@ -54,6 +57,7 @@
#include <sys/types.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/systm.h>
#include <sys/param.h>
@ -181,5 +185,5 @@ int asc_ringbell()
}
bell_ringing++;
timeout(asc_bellstop, 0, bell_length);
timeout((void *) asc_bellstop, 0, bell_length);
}