diff options
| author | 2001-11-28 16:13:27 +0000 | |
|---|---|---|
| committer | 2001-11-28 16:13:27 +0000 | |
| commit | ab8e80c5174ae691d82a8f1475de3812c6169406 (patch) | |
| tree | 36dbbcb6964a30f24e4eb938c37965f20312252f /sys/ddb/db_command.c | |
| parent | Make pmap_update functions into nops so that we can have a consistent (diff) | |
| download | wireguard-openbsd-ab8e80c5174ae691d82a8f1475de3812c6169406.tar.xz wireguard-openbsd-ab8e80c5174ae691d82a8f1475de3812c6169406.zip | |
zap some typedefs.
vm_map_t -> struct vm_map *
vm_map_entry_t -> struct vm_map_entry *
simple_lock_data_t -> struct simplelock
(uvm not done yet, coming in the next commit)
Diffstat (limited to 'sys/ddb/db_command.c')
| -rw-r--r-- | sys/ddb/db_command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index ff2428c6b90..3f88d110a24 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_command.c,v 1.23 2001/11/06 19:53:18 miod Exp $ */ +/* $OpenBSD: db_command.c,v 1.24 2001/11/28 16:13:29 art Exp $ */ /* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */ /* @@ -290,7 +290,7 @@ db_map_print_cmd(addr, have_addr, count, modif) if (modif[0] == 'f') full = TRUE; - uvm_map_printit((vm_map_t) addr, full, db_printf); + uvm_map_printit((struct vm_map *) addr, full, db_printf); } /*ARGSUSED*/ void |
