summaryrefslogtreecommitdiff
path: root/appl/cmd/stack.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/cmd/stack.b')
-rw-r--r--appl/cmd/stack.b4
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;