1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix indent

This commit is contained in:
Nobuyoshi Nakada 2019-07-08 15:13:59 +09:00
parent a8c54932ba
commit 663d58ffde
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

8
cont.c
View file

@ -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