diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-03-06 17:33:33 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-03-06 17:33:33 +0000 |
commit | 0e2c6f2c3ea869ca7aeb414c7d7d96ed24b76e8b (patch) | |
tree | cc729eedfc991621bf9dd111c7addeaccd10e8e7 /sys/arch/hp300/dev/hil.c | |
parent | 1fccb849f8441001200bc3849bb5c6eeeab228e7 (diff) |
Please gcc 2.8
Diffstat (limited to 'sys/arch/hp300/dev/hil.c')
-rw-r--r-- | sys/arch/hp300/dev/hil.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/hp300/dev/hil.c b/sys/arch/hp300/dev/hil.c index 394529dd3d0..1e6a3afec7a 100644 --- a/sys/arch/hp300/dev/hil.c +++ b/sys/arch/hp300/dev/hil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hil.c,v 1.10 1997/04/16 11:56:07 downsj Exp $ */ +/* $OpenBSD: hil.c,v 1.11 1998/03/06 17:33:30 millert Exp $ */ /* $NetBSD: hil.c,v 1.34 1997/04/02 22:37:32 scottr Exp $ */ /* @@ -882,12 +882,13 @@ hil_process_int(hilp, stat, c) case HIL_DATA: if (hilp->hl_actdev != 0) /* Collecting poll data */ *hilp->hl_pollbp++ = c; - else if (hilp->hl_cmddev != 0) /* Collecting cmd data */ + else if (hilp->hl_cmddev != 0) { /* Collecting cmd data */ if (hilp->hl_cmdending) { hilp->hl_cmddone = TRUE; hilp->hl_cmdending = FALSE; - } else + } else *hilp->hl_cmdbp++ = c; + } return; case 0: /* force full jump table */ |