From cbf8cfb3920f9da2812b6abf4f257fc3f2a0fb24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20B=C3=B6ger?= Date: Fri, 23 Jul 2021 22:19:27 +0100 Subject: [PATCH] remove unused variable --- tests/foreign/apply-loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/foreign/apply-loop.c b/tests/foreign/apply-loop.c index 3feb6d98..20c7b993 100644 --- a/tests/foreign/apply-loop.c +++ b/tests/foreign/apply-loop.c @@ -17,7 +17,7 @@ sexp sexp_apply_times_to_pi(sexp ctx, sexp self, sexp_sint_t n, } int main (int argc, char **argv) { - sexp ctx, res; + sexp ctx; /* Create a context and load two modules with C types. */ ctx = sexp_make_eval_context(NULL, NULL, NULL, 0, 0);