mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-20 14:19: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);
|
FreeLibrary(handle);
|
||||||
return sexp_compile_error(ctx, "dynamic library has no sexp_init_library", file);
|
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
|
#else
|
||||||
static sexp sexp_make_dl (sexp ctx, sexp file, void* handle) {
|
static sexp sexp_make_dl (sexp ctx, sexp file, void* handle) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue