diff options
author | 2007-06-05 16:30:13 +0000 | |
---|---|---|
committer | 2007-06-05 16:30:13 +0000 | |
commit | 070406114c42066e7add3cd602f72e88f2d59dd8 (patch) | |
tree | 767d9be21530374b3d4b186ae281a29e6658ff70 | |
parent | Shuffle calculation of physical block so that bounds checking is not off by (diff) | |
download | wireguard-openbsd-070406114c42066e7add3cd602f72e88f2d59dd8.tar.xz wireguard-openbsd-070406114c42066e7add3cd602f72e88f2d59dd8.zip |
typos
-rw-r--r-- | lib/libpthread/thread/thread_tag.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/thread/thread_tag.c b/lib/libpthread/thread/thread_tag.c index 5b45ed84f58..8f7f427aa8d 100644 --- a/lib/libpthread/thread/thread_tag.c +++ b/lib/libpthread/thread/thread_tag.c @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_tag.c,v 1.2 2004/06/08 22:02:43 xsa Exp $ */ +/* $OpenBSD: thread_tag.c,v 1.3 2007/06/05 16:30:13 kurt Exp $ */ /* PUBLIC DOMAIN: No Rights Reserved. Marco S Hyman <marc@snafu.org> */ @@ -12,7 +12,7 @@ #include "pthread_private.h" /* - * A thread tag is a pointer to a structure of this time. An opaque + * A thread tag is a pointer to a structure of this type. An opaque * tag is used to decouple libc from the thread library. */ struct _thread_tag { @@ -90,7 +90,7 @@ _thread_tag_unlock(void **tag) /* * return the thread specific data for the given tag. If there - * is no date for this thread initialize it from 'storage'. + * is no data for this thread initialize it from 'storage'. * On any error return 'err'. */ void * |