mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
(init_autorelease_thread_vars): Fix typo.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1996 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5993b04328
commit
3b1463f2c0
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ struct autorelease_thread_vars
|
|||
/* Initialize an autorelease_thread_vars structure for a new thread.
|
||||
This function is called in NSThread each time an NSThread is created.
|
||||
TV should be of type `struct autorelease_thread_vars *' */
|
||||
#define init_autorelease_thread_vars(TV) memset (tv, 0, sizeof (typeof (*tv)))
|
||||
#define init_autorelease_thread_vars(TV) memset (TV, 0, sizeof (typeof (*TV)))
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue