mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-29 12:51:03 -07:00
Fix MSVC compilation
This commit is contained in:
parent
af72e2b293
commit
5f032e2dfa
2 changed files with 2 additions and 2 deletions
|
|
@ -201,7 +201,7 @@ _ecl_dealloc_env(cl_env_ptr env)
|
|||
ecl_internal_error("Unable to deallocate environment structure.");
|
||||
#else
|
||||
# if defined(ECL_USE_GUARD_PAGE)
|
||||
if (VirtualFree(env, sizeof(*env), MEM_RELEASE))
|
||||
if (!VirtualFree(env, sizeof(*env), MEM_RELEASE))
|
||||
ecl_internal_error("Unable to deallocate environment structure.");
|
||||
# endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue