Ooops. Committed sin number 1: updating the code w/o updating the comments.
Update the comments too.
This commit is contained in:
parent
9cd2bd7564
commit
7c9b63d96a
@ -664,7 +664,7 @@ memblk_tok(int force)
|
||||
|
||||
/*
|
||||
* IRQ token. Must be number > 0 && < 16.
|
||||
* If force is set, IRQ must exist, and can also be '?'.
|
||||
* If force is set, IRQ must exist, and can also be '?' or 'any'.
|
||||
*/
|
||||
static int
|
||||
irq_tok(int force)
|
||||
@ -678,6 +678,7 @@ irq_tok(int force)
|
||||
|
||||
if (strcmp("?", next_tok()) == 0 && force)
|
||||
return (0);
|
||||
/* old PAO syntax -- people are still using it! */
|
||||
if (strcmp("any", next_tok()) == 0 && force)
|
||||
return (0);
|
||||
pusht = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user