summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_page.h
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>1999-07-31 18:31:00 +0000
committeralc <alc@FreeBSD.org>1999-07-31 18:31:00 +0000
commit5180aa1c5c9950d51f72a4c21d43544c07c97982 (patch)
tree435d06110c1bad9ad49076fd31d4186952e8c59f /sys/vm/vm_page.h
parent2e30179cc4797fc65a838b8c84b5c62416f6d9f2 (diff)
downloadFreeBSD-src-5180aa1c5c9950d51f72a4c21d43544c07c97982.zip
FreeBSD-src-5180aa1c5c9950d51f72a4c21d43544c07c97982.tar.gz
Change the type of vpgqueues::lcnt from "int *" to "int". The indirection
served no purpose.
Diffstat (limited to 'sys/vm/vm_page.h')
-rw-r--r--sys/vm/vm_page.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h
index 70920b7..e91928c 100644
--- a/sys/vm/vm_page.h
+++ b/sys/vm/vm_page.h
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_page.h,v 1.62 1999/06/22 07:18:20 alc Exp $
+ * $Id: vm_page.h,v 1.63 1999/07/22 06:04:17 alc Exp $
*/
/*
@@ -197,7 +197,7 @@ struct vm_page {
extern struct vpgqueues {
struct pglist *pl;
int *cnt;
- int *lcnt;
+ int lcnt;
} vm_page_queues[PQ_COUNT];
#endif
OpenPOWER on IntegriCloud