summaryrefslogtreecommitdiff
path: root/console.c
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2016-09-02 14:59:00 -0400
committerFrans Kaashoek <[email protected]>2016-09-02 14:59:00 -0400
commitb7fed77b7be4608b2ce6233a594c4fd7935e62c7 (patch)
treed02dd80dd5ec7c162f973e1fd9cf692c968bdc0a /console.c
parent5f03799f84796f057924584cc64cf7f3b5ccd75f (diff)
downloadxv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.gz
xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.tar.bz2
xv6-labs-b7fed77b7be4608b2ce6233a594c4fd7935e62c7.zip
Fix a few lines that runoff is complaining about that they are too long
Diffstat (limited to 'console.c')
-rw-r--r--console.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/console.c b/console.c
index d84c7ff..fa611ef 100644
--- a/console.c
+++ b/console.c
@@ -195,7 +195,8 @@ consoleintr(int (*getc)(void))
while((c = getc()) >= 0){
switch(c){
case C('P'): // Process listing.
- doprocdump = 1; // procdump() locks cons.lock indirectly; invoke later
+ // procdump() locks cons.lock indirectly; invoke later
+ doprocdump = 1;
break;
case C('U'): // Kill line.
while(input.e != input.w &&