Moved paren in sgetc to where it belongs. (My fault, I must have wiped it

out when I applied the patch to get the new features by hand)
This commit is contained in:
Nate Williams 1994-02-01 19:04:18 +00:00
parent 20fabfa95d
commit 10a0cecedc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1071
3 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
* $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
* $Id: syscons.c,v 1.31 1994/02/01 15:09:10 rich Exp $
*
*/
@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
return (scgetc(noblock & 0xff));
return (scgetc(noblock) & 0xff);
}
int pcmmap(dev_t dev, int offset, int nprot)

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
* $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
* $Id: syscons.c,v 1.31 1994/02/01 15:09:10 rich Exp $
*
*/
@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
return (scgetc(noblock & 0xff));
return (scgetc(noblock) & 0xff);
}
int pcmmap(dev_t dev, int offset, int nprot)

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from:@(#)syscons.c 1.3 940129
* $Id: syscons.c,v 1.30 1994/02/01 11:13:49 ache Exp $
* $Id: syscons.c,v 1.31 1994/02/01 15:09:10 rich Exp $
*
*/
@ -2389,7 +2389,7 @@ int getchar(void)
u_int sgetc(int noblock)
{
return (scgetc(noblock & 0xff));
return (scgetc(noblock) & 0xff);
}
int pcmmap(dev_t dev, int offset, int nprot)