summaryrefslogtreecommitdiff
path: root/appl/lib/debug.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/lib/debug.b')
-rw-r--r--appl/lib/debug.b4
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/lib/debug.b b/appl/lib/debug.b
index 09273dc7..5e479274 100644
--- a/appl/lib/debug.b
+++ b/appl/lib/debug.b
@@ -552,7 +552,7 @@ Exp.expand(e: self ref Exp): array of ref Exp
k[1] = ref Exp("tl", hex(array of byte tloff), e.pc, e.m, e.p, ref Id(nil, "tl", H, H, t));
return k;
Tarray =>
- (s, err) := pdata(e.p, e.offset, "A");
+ (s, nil) := pdata(e.p, e.offset, "A");
if(s == "nil")
return nil;
(sn, sa) := str->splitl(s, ".");
@@ -622,7 +622,7 @@ Exp.expand(e: self ref Exp): array of ref Exp
return k;
}
Tchan =>
- (s, err) := pdata(e.p, e.offset, "c");
+ (s, nil) := pdata(e.p, e.offset, "c");
if(s == "nil")
return nil;
(sn, sa) := str->splitl(s, ".");