diff options
| author | Charles.Forsyth <devnull@localhost> | 2008-01-22 21:54:45 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2008-01-22 21:54:45 +0000 |
| commit | 9b29ac7ea714507a9c0690620c02c8ca5ab25f90 (patch) | |
| tree | 1eeb3e33858dfc27844b520036f2119869f9088b /appl/lib/debug.b | |
| parent | 60951762adc08955ddba7ff59f6043e7a542a0f2 (diff) | |
20080122-2200
Diffstat (limited to 'appl/lib/debug.b')
| -rw-r--r-- | appl/lib/debug.b | 4 |
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, "."); |
