--- src/sys/ddb/db_aout.c 2006/12/23 00:27:02 1.7 +++ src/sys/ddb/db_aout.c 2006/12/28 21:24:01 1.8 @@ -361,7 +361,7 @@ read_symtab_from_file(struct file *fp, c table_size = sizeof(int) + symsize + strsize; table_size = (table_size + sizeof(int)-1) & ~(sizeof(int)-1); - symtab = kmem_alloc_wired(kernel_map, table_size); + symtab = kmem_alloc_wired(&kernel_map, table_size); *(int *)symtab = symsize;