From ebc8bd6ff51762e7037a1e72feebc9ecdd0b0380 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 20 Dec 2013 17:45:49 -0800 Subject: [PATCH] Update the backtrace call to pass a block index instead of a block, fixing the build --- parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.cpp b/parser.cpp index c93ae0713..31aff34f9 100644 --- a/parser.cpp +++ b/parser.cpp @@ -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); } }