about summary refs log tree commit diff
path: root/src/libexpr/attr-path.cc
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-25T19·38-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-09-25T19·38-0400
commite464b0247d9dd2c53770a851956dd34f82b7c9a6 (patch)
tree75517243f3ce6c5facd3e2424fefbaeeaaad1af1 /src/libexpr/attr-path.cc
parent28bf183d2d2f775e653efe4cee98d7359ce65455 (diff)
parentb9c2b4d5b4cd5d52a950e6dd90eb2e2e79891fa0 (diff)
Merge branch 'readonly-store'
Diffstat (limited to 'src/libexpr/attr-path.cc')
-rw-r--r--src/libexpr/attr-path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/attr-path.cc b/src/libexpr/attr-path.cc
index c9dbe8ef20dd..45794a62d5dc 100644
--- a/src/libexpr/attr-path.cc
+++ b/src/libexpr/attr-path.cc
@@ -10,7 +10,7 @@ namespace nix {
 void findAlongAttrPath(EvalState & state, const string & attrPath,
     Bindings & autoArgs, Expr * e, Value & v)
 {
-    Strings tokens = tokenizeString(attrPath, ".");
+    Strings tokens = tokenizeString<Strings>(attrPath, ".");
 
     Error attrError =
         Error(format("attribute selection path `%1%' does not match expression") % attrPath);