Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1197 → Rev 1196

/uspace/trunk/libc/generic/io/print.c
68,9 → 68,11
* @param flags
* @return number of printed characters or EOF
*/
static int print_char(char c, int width, uint64_t flags)
{
int counter = 0;
char space = ' ';
if (!(flags & __PRINTF_FLAG_LEFTALIGNED)) {
while (--width > 0) { /* one space is consumed by character itself hence predecrement */
254,7 → 256,7
} else {
putchar('b');
}
written += 2;
written == 2;
break;
case 8:
putchar('o');