summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Clements <[email protected]>2011-09-02 15:35:49 -0400
committerAustin Clements <[email protected]>2011-09-02 15:35:49 -0400
commitc6c0cb82c46fa60c3fd3a3df09d74a9ac36a2b89 (patch)
treed216e23844633b319bfd558e3a16bd289a3872dc
parente76dab4fd7c30dd97260a554880ad8728fdc1b33 (diff)
downloadxv6-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.c b/console.c
index 394176b..bc2c167 100644
--- 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, ...)