diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-04-04T17·05+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-04-04T17·05+0200 |
commit | 96b695ccab4a4c8c4ef7f14ac261df43dcc00743 (patch) | |
tree | 3511cba77ca830dbe598ed207b79ce21afc74870 /src/libexpr/get-drvs.cc | |
parent | b62d36963c45ccaebb328fceaf0bb40f9c02a14b (diff) |
forceList: Show position info
Diffstat (limited to 'src/libexpr/get-drvs.cc')
-rw-r--r-- | src/libexpr/get-drvs.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/get-drvs.cc b/src/libexpr/get-drvs.cc index 0ed644e9bc5b..96298556d851 100644 --- a/src/libexpr/get-drvs.cc +++ b/src/libexpr/get-drvs.cc @@ -36,7 +36,7 @@ DrvInfo::Outputs DrvInfo::queryOutputs() /* Get the ‘outputs’ list. */ Bindings::iterator i; if (attrs && (i = attrs->find(state->sOutputs)) != attrs->end()) { - state->forceList(*i->value); + state->forceList(*i->value, *i->pos); /* For each output... */ for (unsigned int j = 0; j < i->value->list.length; ++j) { |