From c1f7196a3b1d069248c8155e593b53ae44b24c62 Mon Sep 17 00:00:00 2001 From: rpj Date: Tue, 22 Aug 2000 08:28:24 +0000 Subject: 2000-08-22 Ross Johnson * private.c (ptw32_throw): Fix exception test; move exceptionInformation declaration. * tsd.c (pthread_key_create): newkey wrongly declared. * pthread.h: Fix comment block. --- tsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tsd.c') diff --git a/tsd.c b/tsd.c index 491769f..cd80ff9 100644 --- a/tsd.c +++ b/tsd.c @@ -64,7 +64,7 @@ pthread_key_create (pthread_key_t * key, void (*destructor) (void *)) */ { int result = 0; - pthread_key_t *newkey; + pthread_key_t newkey; if ((newkey = (pthread_key_t) calloc (1, sizeof (*newkey))) == NULL) { -- cgit v1.2.3