(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:
Andrew McCallum 1997-01-05 23:19:22 +00:00
parent 5993b04328
commit 3b1463f2c0

View file

@ -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)))