diff options
author | deischen <deischen@FreeBSD.org> | 1999-12-28 18:13:04 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 1999-12-28 18:13:04 +0000 |
commit | 97c987240866817a96bf644288fc5f8aaeaf0f5a (patch) | |
tree | 9973ade3ef74b66254d4d072ab8fb57ee41212e4 /lib/libpthread/thread/thr_priority_queue.c | |
parent | 9321f383a24bce8e6555df4e36441e9bfcff4a27 (diff) | |
download | FreeBSD-src-97c987240866817a96bf644288fc5f8aaeaf0f5a.zip FreeBSD-src-97c987240866817a96bf644288fc5f8aaeaf0f5a.tar.gz |
-Wall and minor style(9) cleanups.
Diffstat (limited to 'lib/libpthread/thread/thr_priority_queue.c')
-rw-r--r-- | lib/libpthread/thread/thr_priority_queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_priority_queue.c b/lib/libpthread/thread/thr_priority_queue.c index 5bd8a8c..6fdf844 100644 --- a/lib/libpthread/thread/thr_priority_queue.c +++ b/lib/libpthread/thread/thr_priority_queue.c @@ -87,7 +87,7 @@ static int _pq_active = 0; int _pq_alloc(pq_queue_t *pq, int minprio, int maxprio) { - int i, ret = 0; + int ret = 0; int prioslots = maxprio - minprio + 1; if (pq == NULL) |