diff options
Diffstat (limited to 'usr.bin/grep/queue.c')
-rw-r--r-- | usr.bin/grep/queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/grep/queue.c b/usr.bin/grep/queue.c index 453183367b8c..272dedfc91dc 100644 --- a/usr.bin/grep/queue.c +++ b/usr.bin/grep/queue.c @@ -49,7 +49,7 @@ struct qentry { }; static STAILQ_HEAD(, qentry) queue = STAILQ_HEAD_INITIALIZER(queue); -static unsigned long long count; +static long long count; static struct qentry *dequeue(void); |