diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2001-08-30 17:47:58 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2001-08-30 17:47:58 +0000 |
commit | a4799ae63ccc20098591b8ddfd0e6d90ea031503 (patch) | |
tree | 41768fe12c9e57db59309ae2adaf08a63fd99e38 /lib/libc/thread/thread_fd.c | |
parent | 7bf7e5116096ca874919597af7c068271601588a (diff) |
Back out fgsch@'s tree breaking commits.
Test next time, ok?
Diffstat (limited to 'lib/libc/thread/thread_fd.c')
-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 2c98939b9d7..368800a69d7 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.2 2001/08/30 07:38:27 fgsch Exp $ */ +/* $OpenBSD: thread_fd.c,v 1.3 2001/08/30 17:47:57 todd 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; - char *fname; + const 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; - char *fname; + const char *fname; int lineno; { } |