* _combineChannels shouldn't be an integer.

This commit is contained in:
Eelco Dolstra 2010-04-16 14:07:52 +00:00
parent 8ca4a001cb
commit 8bb0210fea
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ static Expr * loadSourceExpr(EvalState & state, const Path & path)
for a user to have a ~/.nix-defexpr directory that includes
some system-wide directory). */
ExprAttrs * attrs = new ExprAttrs;
attrs->attrs[state.symbols.create("_combineChannels")] = new ExprInt(1);
attrs->attrs[state.symbols.create("_combineChannels")] = new ExprList();
getAllExprs(state, path, *attrs);
return attrs;
}