summaryrefslogtreecommitdiff
path: root/decoder/ff_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'decoder/ff_factory.cc')
-rw-r--r--decoder/ff_factory.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/decoder/ff_factory.cc b/decoder/ff_factory.cc
index d66cd883..fe733ca5 100644
--- a/decoder/ff_factory.cc
+++ b/decoder/ff_factory.cc
@@ -28,6 +28,7 @@ shared_ptr<FeatureFunction> FFRegistry::Create(const string& ffname, const strin
cerr << "I don't know how to create feature " << ffname << endl;
} else {
res = it->second->Create(param);
+ res->name=ffname;
}
return res;
}