diff options
Diffstat (limited to 'src/resp.cpp')
-rw-r--r-- | src/resp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resp.cpp b/src/resp.cpp index eb70e62..0d1af5a 100644 --- a/src/resp.cpp +++ b/src/resp.cpp @@ -147,7 +147,7 @@ main(int argc, char** argv) if (!exp || (exp->as_tuple() && exp->as_tuple()->tup_len() == 1)) break; - AST* ast = penv.parse(exp); + const AST* ast = penv.parse(exp); pprint(os, ast, cenv, false); is.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // Skip newlines } |