Module Name: src
Committed By: uebayasi
Date: Wed Feb 10 14:11:32 UTC 2010
Modified Files:
src/sys/uvm [uebayasi-xip]: uvm_page.h
Log Message:
Oops fix a typo. (My lapdog's k/b is dying.)
To generate a diff of this commit:
cvs rdiff -u -r1.59.2.8 -r1.59.2.9 src/sys/uvm/uvm_page.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_page.h
diff -u src/sys/uvm/uvm_page.h:1.59.2.8 src/sys/uvm/uvm_page.h:1.59.2.9
--- src/sys/uvm/uvm_page.h:1.59.2.8 Wed Feb 10 14:07:23 2010
+++ src/sys/uvm/uvm_page.h Wed Feb 10 14:11:32 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_page.h,v 1.59.2.8 2010/02/10 14:07:23 uebayasi Exp $ */
+/* $NetBSD: uvm_page.h,v 1.59.2.9 2010/02/10 14:11:32 uebayasi Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -320,7 +320,7 @@
#define VM_PAGE_TO_MD(pg)
#else
#define VM_PAGE_TO_MD(pg) \
- (uvm_pageisdevice_p(pg) ? vm_page_device_mdpage_lookup(pg) ; &(pg)->mdpage)
+ (uvm_pageisdevice_p(pg) ? vm_page_device_mdpage_lookup(pg) : &(pg)->mdpage)
#endif
/*