Update the backtrace call to pass a block index instead of a block,

fixing the build
This commit is contained in:
ridiculousfish 2013-12-20 17:45:49 -08:00
parent ed70195c7e
commit ebc8bd6ff5

View file

@ -3380,7 +3380,7 @@ void parser_t::get_backtrace(const wcstring &src, const parse_error_list_t &erro
output->append(err.describe(src, skip_caret));
output->push_back(L'\n');
this->stack_trace(current_block, *output);
this->stack_trace(0, *output);
}
}