mirror of git://sourceware.org/git/glibc.git
(__pthread_reset_main_thread): Fix a typo.
This commit is contained in:
parent
08003272b8
commit
6f70c24ccb
|
@ -884,7 +884,7 @@ void __pthread_reset_main_thread()
|
|||
if (getrlimit (RLIMIT_STACK, &limit) == 0
|
||||
&& limit.rlim_cur != limit.rlim_max) {
|
||||
limit.rlim_cur = limit.rlim_max;
|
||||
setrlimit (STACK_SIZE, &limit);
|
||||
setrlimit(RLIMIT_STACK, &limit);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue