accidentally committed an = too little, which caused all unknown values to result in 'not building', which was not the intention

This commit is contained in:
Rob Vermaas 2012-02-16 11:14:22 +01:00
parent 739a03393c
commit bb6ef9c2ed

View file

@ -178,7 +178,7 @@ static void findJobsWrapped(EvalState & state, XMLWriter & doc,
Bindings());
}
else if (v.type = tNull) {
else if (v.type == tNull) {
// allow null values, meaning 'do nothing'
}