mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix indent
This commit is contained in:
parent
a8c54932ba
commit
663d58ffde
1 changed files with 4 additions and 4 deletions
8
cont.c
8
cont.c
|
@ -403,10 +403,10 @@ cont_free(void *ptr)
|
|||
rb_fiber_t *fiber = (rb_fiber_t*)cont;
|
||||
#if defined(FIBER_USE_COROUTINE)
|
||||
coroutine_destroy(&fiber->context);
|
||||
if (fiber->ss_sp != NULL) {
|
||||
if (fiber_is_root_p(fiber)) {
|
||||
rb_bug("Illegal root fiber parameter");
|
||||
}
|
||||
if (fiber->ss_sp != NULL) {
|
||||
if (fiber_is_root_p(fiber)) {
|
||||
rb_bug("Illegal root fiber parameter");
|
||||
}
|
||||
#ifdef _WIN32
|
||||
VirtualFree((void*)fiber->ss_sp, 0, MEM_RELEASE);
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue