Fix subtle word-size error.

This commit is contained in:
mycroft 1993-04-19 06:02:16 +00:00
parent eaea84d1a9
commit 81b91f4488
2 changed files with 10 additions and 4 deletions

View File

@ -16,6 +16,9 @@
/*
* HISTORY
* $Log: aha1542.c,v $
* Revision 1.7 1993/04/19 06:02:16 mycroft
* Fix subtle word-size error.
*
* Revision 1.6 1993/04/15 07:57:50 deraadt
* ioconf changes, see previous cvs's that dumped core
*
@ -516,7 +519,7 @@ ahaattach(struct isa_device *dev)
{
static int firsttime;
int masunit = dev->id_masunit;
short id = dev->id_unit;
int id = dev->id_unit;
if(!firsttime) {
firsttime = 1;

View File

@ -16,6 +16,9 @@
/*
* HISTORY
* $Log: aha1542.c,v $
* Revision 1.7 1993/04/19 06:02:16 mycroft
* Fix subtle word-size error.
*
* Revision 1.6 1993/04/15 07:57:50 deraadt
* ioconf changes, see previous cvs's that dumped core
*
@ -516,7 +519,7 @@ ahaattach(struct isa_device *dev)
{
static int firsttime;
int masunit = dev->id_masunit;
short id = dev->id_unit;
int id = dev->id_unit;
if(!firsttime) {
firsttime = 1;