mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 06:09:18 +02:00
Removing mingw cast warnings.
This commit is contained in:
parent
7a5dd6351c
commit
fb6f53f8bd
1 changed files with 1 additions and 1 deletions
2
eval.c
2
eval.c
|
@ -1080,7 +1080,7 @@ static sexp sexp_load_dl (sexp ctx, sexp file, sexp env) {
|
|||
FreeLibrary(handle);
|
||||
return sexp_compile_error(ctx, "dynamic library has no sexp_init_library", file);
|
||||
}
|
||||
return init(ctx, NULL, 3, env, sexp_version, SEXP_ABI_IDENTIFIER);
|
||||
return init(ctx, NULL, 3, env, (sexp)sexp_version, (sexp)SEXP_ABI_IDENTIFIER);
|
||||
}
|
||||
#else
|
||||
static sexp sexp_make_dl (sexp ctx, sexp file, void* handle) {
|
||||
|
|
Loading…
Add table
Reference in a new issue