summaryrefslogtreecommitdiff
path: root/appl/lib/attrdb.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/lib/attrdb.b')
-rw-r--r--appl/lib/attrdb.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/attrdb.b b/appl/lib/attrdb.b
index de9fa1b1..b411b7ef 100644
--- a/appl/lib/attrdb.b
+++ b/appl/lib/attrdb.b
@@ -307,7 +307,7 @@ flatten(ts: list of (ref Tuples, list of ref Attr), attr: string): list of ref A
{
l: list of ref Attr;
for(; ts != nil; ts = tl ts){
- (line, a) := hd ts;
+ (line, nil) := hd ts;
t := line.find(attr);
for(; t != nil; t = tl t)
l = hd t :: l;