diff options
author | Austin Clements <[email protected]> | 2010-09-01 00:41:25 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-01 00:41:25 -0400 |
commit | b0751a3e9bfce88cb07c1a540ceabf21f2d53b31 (patch) | |
tree | 061a378a3666ceef074118eab6b0ca02845b717a /console.c | |
parent | 5efca9054f1911e206831e16c2ca5ac8c8fc7c12 (diff) | |
download | xv6-labs-b0751a3e9bfce88cb07c1a540ceabf21f2d53b31.tar.gz xv6-labs-b0751a3e9bfce88cb07c1a540ceabf21f2d53b31.tar.bz2 xv6-labs-b0751a3e9bfce88cb07c1a540ceabf21f2d53b31.zip |
Space police
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -163,7 +163,7 @@ consputc(int c) ; } - if (c == BACKSPACE) { + if(c == BACKSPACE){ uartputc('\b'); uartputc(' '); uartputc('\b'); |