diff options
author | Austin Clements <[email protected]> | 2011-09-02 15:35:49 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2011-09-02 15:35:49 -0400 |
commit | c6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89 (patch) | |
tree | d216e23844633b319bfd558e3a16bd289a3872dc | |
parent | e76dab4fd7c30dd97260a554880ad8728fdc1b33 (diff) | |
download | xv6-labs-c6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89.tar.gz xv6-labs-c6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89.tar.bz2 xv6-labs-c6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89.zip |
Fix same wonky pagebreak bug in console.c
-rw-r--r-- | console.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, ...) |