diff options
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; { } |