aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/primops
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-12-28 19:40:04 -0600
committerMatthew Bauer <mjbauer95@gmail.com>2020-12-28 19:40:04 -0600
commit64904b9d5d32c4201aaf462ae82b736f33785793 (patch)
tree1678e7c59f3ae4eccd7e962f0a15a89878da5842 /src/libexpr/primops
parentede534a3a1aabc574a9fefe268a0a7a97a73138b (diff)
Fixup
Diffstat (limited to 'src/libexpr/primops')
-rw-r--r--src/libexpr/primops/fetchTree.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops/fetchTree.cc b/src/libexpr/primops/fetchTree.cc
index e64e3fbb8..ab80be2d3 100644
--- a/src/libexpr/primops/fetchTree.cc
+++ b/src/libexpr/primops/fetchTree.cc
@@ -103,7 +103,7 @@ static void fetchTree(
addURI(state, attrs, attr.name, attr.value->string.s);
else if (attr.value->type() == nBool)
attrs.emplace(attr.name, Explicit<bool>{attr.value->boolean});
- else if (attr.value->type == nInt)
+ else if (attr.value->type() == nInt)
attrs.emplace(attr.name, uint64_t(attr.value->integer));
else
throw TypeError("fetchTree argument '%s' is %s while a string, Boolean or integer is expected",