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

Fix line endings.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65869 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
samuel 2018-11-20 10:17:49 +00:00
parent 0b5e1442f5
commit 49e920855a

View file

@ -34,7 +34,7 @@ static inline void coroutine_initialize(
void *stack_pointer, void *stack_pointer,
size_t stack_size size_t stack_size
) { ) {
/* Force 16-byte alignment */ /* Force 16-byte alignment */
context->stack_pointer = (void**)((uintptr_t)stack_pointer & ~0xF); context->stack_pointer = (void**)((uintptr_t)stack_pointer & ~0xF);
if (!start) { if (!start) {