From 8022c7c98de94f809b59f526ba012e3337cdb930 Mon Sep 17 00:00:00 2001 From: Chris Walsh Date: Thu, 17 Dec 2015 00:05:00 -0500 Subject: [PATCH] Fixed argument name typo active when SEXP_USE_STATIC_LIBS selected --- eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eval.c b/eval.c index 4009a4f2..18ed2631 100644 --- a/eval.c +++ b/eval.c @@ -1302,11 +1302,11 @@ static sexp sexp_load_dl (sexp ctx, sexp file, sexp env) { #endif #if SEXP_USE_DL || SEXP_USE_STATIC_LIBS -static sexp sexp_load_binary(sexp ctx, sexp source, sexp env) { +static sexp sexp_load_binary(sexp ctx, sexp file, sexp env) { #if SEXP_USE_STATIC_LIBS struct sexp_library_entry_t *entry; #endif - sexp res = sexp_load_dl(ctx, source, env); + sexp res = sexp_load_dl(ctx, file, env); #if SEXP_USE_STATIC_LIBS if (res == SEXP_UNDEF || sexp_exceptionp(res)) { entry = sexp_find_static_library(sexp_string_data(file));