Fix same wonky pagebreak bug in console.c

This commit is contained in:
Austin Clements 2011-09-02 15:35:49 -04:00
parent e76dab4fd7
commit c6c0cb82c4
1 changed files with 1 additions and 1 deletions

View File

@ -47,8 +47,8 @@ printint(int xx, int base, int sign)
while(--i >= 0)
consputc(buf[i]);
}
//PAGEBREAK: 50
// Print to the console. only understands %d, %x, %p, %s.
void
cprintf(char *fmt, ...)