From 3f1f06c5d12b24c4061e5123acabf72348ff45a2 Mon Sep 17 00:00:00 2001 From: "Charles.Forsyth" Date: Wed, 16 Jan 2008 13:39:58 +0000 Subject: 20080116-1340 --- appl/cmd/stack.b | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'appl/cmd/stack.b') 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; -- cgit v1.2.3