xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89
parent e76dab4fd7c30dd97260a554880ad8728fdc1b33
Author: Austin Clements <amdragon@mit.edu>
Date:   Fri,  2 Sep 2011 15:35:49 -0400

Fix same wonky pagebreak bug in console.c

Diffstat:
Mconsole.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/console.c b/console.c @@ -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, ...)