summaryrefslogtreecommitdiffstats
path: root/sculld
diff options
context:
space:
mode:
Diffstat (limited to 'sculld')
-rw-r--r--sculld/mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sculld/mmap.c b/sculld/mmap.c
index 42989f3..3424e89 100644
--- a/sculld/mmap.c
+++ b/sculld/mmap.c
@@ -95,7 +95,7 @@ struct page *sculld_vma_nopage(struct vm_area_struct *vma,
struct vm_operations_struct sculld_vm_ops = {
.open = sculld_vma_open,
.close = sculld_vma_close,
- .nopage = sculld_vma_nopage,
+ .fault = sculld_vma_nopage,
};