Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 614 → Rev 615

/kernel/trunk/generic/src/debug/print.c
55,7 → 55,7
int i = 0;
char c;
while (c = str[i++])
while ((c = str[i++]))
putchar(c);
}
 
290,7 → 290,7
irqpri = interrupts_disable();
spinlock_lock(&printflock);
 
while (c = fmt[i++]) {
while ((c = fmt[i++])) {
switch (c) {
 
/* control character */