diff options
author | 2001-09-04 22:17:44 +0000 | |
---|---|---|
committer | 2001-09-04 22:17:44 +0000 | |
commit | 76255b28fcbd9cdd77f49c23b6b60f68de906f88 (patch) | |
tree | 8b1adfbd865f3ad766fe5ed55b5dc298f9670823 /lib/libc/thread | |
parent | Fix a diagnostic (diff) | |
download | wireguard-openbsd-76255b28fcbd9cdd77f49c23b6b60f68de906f88.tar.xz wireguard-openbsd-76255b28fcbd9cdd77f49c23b6b60f68de906f88.zip |
put changes back, this time ALL the files.
Diffstat (limited to 'lib/libc/thread')
-rw-r--r-- | lib/libc/thread/thread_fd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/thread/thread_fd.c b/lib/libc/thread/thread_fd.c index 368800a69d7..1d0e50d65a6 100644 --- a/lib/libc/thread/thread_fd.c +++ b/lib/libc/thread/thread_fd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: thread_fd.c,v 1.3 2001/08/30 17:47:57 todd Exp $ */ +/* $OpenBSD: thread_fd.c,v 1.4 2001/09/04 22:17:45 fgsch Exp $ */ #include <sys/time.h> #include <pthread.h> @@ -28,7 +28,7 @@ WEAK_NAME(_thread_fd_lock_debug)(fd, lock_type, timeout, fname, lineno) int fd; int lock_type; struct timespec *timeout; - const char *fname; + char *fname; int lineno; { return 0; @@ -45,7 +45,7 @@ void WEAK_NAME(_thread_fd_unlock_debug)(fd, lock_type, fname, lineno) int fd; int lock_type; - const char *fname; + char *fname; int lineno; { } |