From 3ccffad606386a9344b592cb35bda9c5a1714242 Mon Sep 17 00:00:00 2001 From: Nickolas Lloyd Date: Sun, 29 Jan 2017 21:27:25 -0500 Subject: [PATCH] ; s/#if/#ifdef/ HAVE_LIBJIT ; * src/alloc.c (cleanup_vector): Test for macro definition instead of value. --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index 4c62f810c3b..0c6c1e077aa 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -3221,7 +3221,7 @@ cleanup_vector (struct Lisp_Vector *vector) else if (PSEUDOVECTOR_TYPEP (&vector->header, PVEC_COMPILED) && vector->contents[COMPILED_JIT_CTXT] != (Lisp_Object )NULL) { -#if HAVE_LIBJIT +#ifdef HAVE_LIBJIT jit_context_t ctxt = (jit_context_t )vector->contents[COMPILED_JIT_CTXT]; jit_context_destroy (ctxt); #endif -- 2.39.5