Lines 187-193
Link Here
|
187 |
* the next characters (up to a control character, i.e. a character <= 32), |
187 |
* the next characters (up to a control character, i.e. a character <= 32), |
188 |
* give the name of the register. Thus: |
188 |
* give the name of the register. Thus: |
189 |
* |
189 |
* |
190 |
* kvprintf("reg=%b\n", 3, "\10\2BITTWO\1BITONE\n"); |
190 |
* kvprintf("reg=%b\n", 3, "\10\2BITTWO\1BITONE"); |
191 |
* |
191 |
* |
192 |
* would produce output: |
192 |
* would produce output: |
193 |
* |
193 |
* |
Lines 500-506
Link Here
|
500 |
while (percent < fmt) |
500 |
while (percent < fmt) |
501 |
PCHAR(*percent++); |
501 |
PCHAR(*percent++); |
502 |
/* |
502 |
/* |
503 |
* Since we ignore an formatting argument it is no |
503 |
* Since we ignore a formatting argument it is no |
504 |
* longer safe to obey the remaining formatting |
504 |
* longer safe to obey the remaining formatting |
505 |
* arguments as the arguments will no longer match |
505 |
* arguments as the arguments will no longer match |
506 |
* the format specs. |
506 |
* the format specs. |