diff options
| author | Charles.Forsyth <devnull@localhost> | 2008-01-16 13:39:58 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2008-01-16 13:39:58 +0000 |
| commit | 3f1f06c5d12b24c4061e5123acabf72348ff45a2 (patch) | |
| tree | d40487b0f5d3a46c5e1cefe288f9a74b8494d9a7 /appl/cmd/stack.b | |
| parent | ca1042d3d05e5e9b2b5094b04197c96ec3b34bfe (diff) | |
20080116-1340
Diffstat (limited to 'appl/cmd/stack.b')
| -rw-r--r-- | appl/cmd/stack.b | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/stack.b b/appl/cmd/stack.b index 7b90a0b5..189870d3 100644 --- a/appl/cmd/stack.b +++ b/appl/cmd/stack.b @@ -155,7 +155,7 @@ stdsym(m: ref Module) } if(dism != nil && (sp := dism->src(dis)) != nil){ sp = sp[0: len sp - 1] + "sbl"; - (sym, err) := debug->sym(sp); + (sym, nil) := debug->sym(sp); if (sym != nil) { m.addsym(sym); return; @@ -167,7 +167,7 @@ stdsym(m: ref Module) sblpath = sblpath + dis[len dispath:]; if (len sblpath > 4 && sblpath[len sblpath - 4:] == ".dis") sblpath = sblpath[0:len sblpath - 4] + ".sbl"; - (sym, err) := debug->sym(sblpath); + (sym, nil) := debug->sym(sblpath); if (sym != nil) { m.addsym(sym); return; |
