remove some stray trailing space characters

This commit is contained in:
Rich Felker
2011-09-13 09:53:41 -04:00
parent fb80e047cc
commit 28af39fe42
4 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ static int init_main_thread()
main_thread.tsd = (void **)__pthread_tsd_main;
main_thread.errno_ptr = __errno_location();
main_thread.self = &main_thread;
main_thread.tid = main_thread.pid =
main_thread.tid = main_thread.pid =
__syscall(SYS_set_tid_address, &main_thread.tid);
libc.main_thread = &main_thread;
return 0;