From 3a9139d197ea1a211b64ca70e1f7e1f0545a4424 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 6 Sep 2020 18:20:00 +0200 Subject: [PATCH] * src/comp.c (Fcomp__compile_ctxt_to_file): Rename a variable. --- src/comp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comp.c b/src/comp.c index ddecacd74e7..70bb560da63 100644 --- a/src/comp.c +++ b/src/comp.c @@ -4353,10 +4353,10 @@ DEFUN ("comp--compile-ctxt-to-file", Fcomp__compile_ctxt_to_file, if (COMP_DEBUG > 2) gcc_jit_context_dump_reproducer_to_file (comp.ctxt, "comp_reproducer.c"); - AUTO_STRING (dot_so, NATIVE_ELISP_SUFFIX); + AUTO_STRING (dot_eln, NATIVE_ELISP_SUFFIX); Lisp_Object tmp_file = - Fmake_temp_file_internal (base_name, Qnil, dot_so, Qnil); + Fmake_temp_file_internal (base_name, Qnil, dot_eln, Qnil); gcc_jit_context_compile_to_file (comp.ctxt, GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY, SSDATA (tmp_file)); -- 2.39.5