aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/code.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cmd/rc/code.c')
-rw-r--r--sys/cmd/rc/code.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cmd/rc/code.c b/sys/cmd/rc/code.c
index edf47cf..b7eb728 100644
--- a/sys/cmd/rc/code.c
+++ b/sys/cmd/rc/code.c
@@ -34,7 +34,7 @@ stuffdot(Code *p)
int a;
a = p - code.buf;
- if (code.ip <= p || p < code.buf)
+ if(code.ip <= p || p < code.buf)
panic("bad address %d in stuffdot", a);
code.buf[a].i = code.ip-code.buf;
}
@@ -46,7 +46,7 @@ rcc(Tree *t, int eflag)
Code *p, *q;
Tree *tt;
- if (!t)
+ if(!t)
return;
switch(t->type) {