diff options
author | alex <alex@FreeBSD.org> | 1998-09-07 21:55:01 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1998-09-07 21:55:01 +0000 |
commit | d09071d106878ed2978ca69d2d46fcd80a021f53 (patch) | |
tree | 13a86a44f6e6a4aa9d4f3953eb60f8b722198be4 /lib/libkse/thread/thr_mutex.c | |
parent | fff0f057805582731b159f9a5aa58c84fe3b323e (diff) | |
download | FreeBSD-src-d09071d106878ed2978ca69d2d46fcd80a021f53.zip FreeBSD-src-d09071d106878ed2978ca69d2d46fcd80a021f53.tar.gz |
Removed unused variables.
Diffstat (limited to 'lib/libkse/thread/thr_mutex.c')
-rw-r--r-- | lib/libkse/thread/thr_mutex.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_mutex.c b/lib/libkse/thread/thr_mutex.c index 0461278..4f4aa8a 100644 --- a/lib/libkse/thread/thr_mutex.c +++ b/lib/libkse/thread/thr_mutex.c @@ -46,7 +46,6 @@ pthread_mutex_init(pthread_mutex_t * mutex, enum pthread_mutextype type; pthread_mutex_t pmutex; int ret = 0; - int status; if (mutex == NULL) { ret = EINVAL; |