diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2012-08-03 08:10:17 +0200 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2012-08-03 10:33:49 +0200 |
| commit | 13f78d96adf52101aa480e8c83d041f62fcfa1c8 (patch) | |
| tree | 3cf26170a94292af9c971636ea37efb651be4c1a /man3/pthread_create.3 | |
| parent | ca302d0ee368b699ffec4cd465ee02f3ed9fe1a1 (diff) | |
| download | man-pages-13f78d96adf52101aa480e8c83d041f62fcfa1c8.tar.gz | |
getdents.2, select_tut.2, atof.3, atoi.3, pthread_create.3, pthread_sigmask.3, rtime.3, setbuf.3, tsearch.3, netlink.7: Remove unneeded casts
Reported-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3/pthread_create.3')
| -rw-r--r-- | man3/pthread_create.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/pthread_create.3 b/man3/pthread_create.3 index 66190bb7f9..42df8591f2 100644 --- a/man3/pthread_create.3 +++ b/man3/pthread_create.3 @@ -21,7 +21,7 @@ .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" -.TH PTHREAD_CREATE 3 2012-03-15 "Linux" "Linux Programmer's Manual" +.TH PTHREAD_CREATE 3 2012-08-03 "Linux" "Linux Programmer's Manual" .SH NAME pthread_create \- create a new thread .SH SYNOPSIS @@ -265,7 +265,7 @@ struct thread_info { /* Used as argument to thread_start() */ static void * thread_start(void *arg) { - struct thread_info *tinfo = (struct thread_info *) arg; + struct thread_info *tinfo = arg; char *uargv, *p; printf("Thread %d: top of stack near %p; argv_string=%s\\n", |
