diff options
Diffstat (limited to 'i386/i386at/kd_queue.c')
-rw-r--r-- | i386/i386at/kd_queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386at/kd_queue.c b/i386/i386at/kd_queue.c index 2b83044..2086eb1 100644 --- a/i386/i386at/kd_queue.c +++ b/i386/i386at/kd_queue.c @@ -72,14 +72,14 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. boolean_t kdq_empty(q) - kd_event_queue *q; + const kd_event_queue *q; { return(q->firstfree == q->firstout); } boolean_t kdq_full(q) - kd_event_queue *q; + const kd_event_queue *q; { return(q_next(q->firstfree) == q->firstout); } |