summaryrefslogtreecommitdiff
path: root/sys/src/9/port/chan.c
diff options
context:
space:
mode:
authorglenda <glenda@cirno.localdomain>2015-08-25 09:35:10 +0000
committerglenda <glenda@cirno.localdomain>2015-08-25 09:35:10 +0000
commitc4fdc6bfdb2211e13643d5fba75edf437c122eef (patch)
treed5991bc7350d3058cfcefe06dfa43814e62df919 /sys/src/9/port/chan.c
parent6b402b83cffc97015345dab1c27c35afe64bb3db (diff)
fix fuckup
Diffstat (limited to 'sys/src/9/port/chan.c')
-rw-r--r--sys/src/9/port/chan.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/src/9/port/chan.c b/sys/src/9/port/chan.c
index add9ece90..7e87b9110 100644
--- a/sys/src/9/port/chan.c
+++ b/sys/src/9/port/chan.c
@@ -152,10 +152,8 @@ chandevreset(void)
int i;
todinit(); /* avoid later reentry causing infinite recursion */
- for(i=0; devtab[i] != nil; i++){
- //print("%c: %s: reset\n", devtab[i]->dc, devtab[i]->name);
+ for(i=0; devtab[i] != nil; i++)
devtab[i]->reset();
- }
}
static void closeproc(void*);