1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-09-01 02:34:55 +00:00

Fix typo in return type.

This commit is contained in:
Bruno Haible
2007-04-13 11:04:55 +00:00
parent 3d17c28235
commit e40470ec76
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2007-04-13 Bruno Haible <bruno@clisp.org>
* lib/tls.c (glthread_tls_get): Fix return type.
Patch by Arto C. Nirkko <anirkko@insel.ch>.
2007-04-12 Eric Blake <ebb9@byu.net>
* modules/gettime (Depends-on): Remove gettime.
+2 -2
View File
@@ -1,5 +1,5 @@
/* Thread-local storage in multithreaded situations.
Copyright (C) 2005-2006 Free Software Foundation, Inc.
Copyright (C) 2005-2007 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -41,7 +41,7 @@
/* ------------------------- gl_tls_key_t datatype ------------------------- */
void
void *
glthread_tls_get (thread_key_t key)
{
void *value;