diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2022-10-28 04:00:00 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2022-10-29 11:57:20 +0200 |
commit | 8df721df25864f89772c58a4486314855bf1a37e (patch) | |
tree | 7c89253922a8f09b964876b438056e2655cc9062 /src/rt | |
parent | 467b6fb9eeb12d064c1f6fa4d7f87638e49685ca (diff) | |
download | open-axiom-8df721df25864f89772c58a4486314855bf1a37e.tar.gz |
Fix some compiler warnings & buffer overflows
Diffstat (limited to 'src/rt')
-rw-r--r-- | src/rt/Lisp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/Lisp.cc b/src/rt/Lisp.cc index fae3e02f..045d087c 100644 --- a/src/rt/Lisp.cc +++ b/src/rt/Lisp.cc @@ -327,7 +327,7 @@ namespace OpenAxiom { unimplemented(x); if (auto op = special_operator(*s)) return op(ctx, x); - auto fun = symbol_function(ctx, *s); + return to_value( symbol_function(ctx, *s)); } Value |