diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T13·37+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-01-07T13·37+0100 |
commit | 9aac1861f7c25d34212235bfd86f71312904e29e (patch) | |
tree | 1dc751f6cee0d52eb42fbe58000eaeddf950b400 /src/libexpr/primops.cc | |
parent | 94595f42eb829771ed5f757cb71d8830f10a4ef3 (diff) |
Fix some signedness warnings
Diffstat (limited to 'src/libexpr/primops.cc')
-rw-r--r-- | src/libexpr/primops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 5a1f47b55e0d..87ee4f68a999 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -1374,7 +1374,7 @@ static void prim_genList(EvalState & state, const Pos & pos, Value * * args, Val state.mkList(v, len); - for (unsigned int n = 0; n < len; ++n) { + for (unsigned int n = 0; n < (unsigned int) len; ++n) { Value * arg = state.allocValue(); mkInt(*arg, n); mkApp(*(v.listElems()[n] = state.allocValue()), *args[0], *arg); |