* expand tabs.

This commit is contained in:
git 2019-06-19 20:33:24 +09:00
parent d17344cfc5
commit 659eda7f83

View File

@ -966,9 +966,9 @@ thread_start_func_1(void *th_ptr)
native_thread_init(th); native_thread_init(th);
/* run */ /* run */
#if defined USE_NATIVE_THREAD_INIT #if defined USE_NATIVE_THREAD_INIT
thread_start_func_2(th, th->ec->machine.stack_start); thread_start_func_2(th, th->ec->machine.stack_start);
#else #else
thread_start_func_2(th, &stack_start); thread_start_func_2(th, &stack_start);
#endif #endif
} }
#if USE_THREAD_CACHE #if USE_THREAD_CACHE