summaryrefslogtreecommitdiff
path: root/sys/src/cmd/hjfs
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-08-11 12:41:49 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2012-08-11 12:41:49 +0200
commita1f69ed555ecde4e961c2ba8da8237b19626cd3d (patch)
treebe0a607bcf44b7a30245ad6e5f45f6ccecc521f7 /sys/src/cmd/hjfs
parent3759a4a94519febb36517dc7d723ff7c735c493a (diff)
hjfs: fix tabs (damn google code editor)
Diffstat (limited to 'sys/src/cmd/hjfs')
-rw-r--r--sys/src/cmd/hjfs/fs2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/src/cmd/hjfs/fs2.c b/sys/src/cmd/hjfs/fs2.c
index 3d32a1430..3b25287d8 100644
--- a/sys/src/cmd/hjfs/fs2.c
+++ b/sys/src/cmd/hjfs/fs2.c
@@ -43,11 +43,11 @@ chanwalk(Chan *ch, char *name)
if(name == nil || name[0] == 0 || name[0] == '.' && name[1] == 0)
return 1;
chbegin(ch);
- if(ch->open != 0){
- werrstr(Einval);
- chend(ch);
- return -1;
- }
+ if(ch->open != 0){
+ werrstr(Einval);
+ chend(ch);
+ return -1;
+ }
b = getbuf(ch->fs->d, ch->loc->blk, TDENTRY, 0);
if(b == nil){
chend(ch);