diff options
Diffstat (limited to 'linux')
-rw-r--r-- | linux/dev/glue/kmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/dev/glue/kmem.c b/linux/dev/glue/kmem.c index 9f0412f..908d086 100644 --- a/linux/dev/glue/kmem.c +++ b/linux/dev/glue/kmem.c @@ -525,7 +525,7 @@ vmalloc_list_remove (struct vmalloc_struct *p) p->next->prev = p->prev; p->prev->next = p->next; - kfree (p, sizeof (struct vmalloc_struct)); + kfree ((vm_offset_t) p, sizeof (struct vmalloc_struct)); } /* Allocate SIZE bytes of memory. The pages need not be contiguous. */ |