diff options
-rw-r--r-- | sys/ddb/db_ctf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_ctf.c b/sys/ddb/db_ctf.c index 0913c85cdaf..e38226e3a9b 100644 --- a/sys/ddb/db_ctf.c +++ b/sys/ddb/db_ctf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_ctf.c,v 1.18 2017/09/06 09:48:08 dlg Exp $ */ +/* $OpenBSD: db_ctf.c,v 1.19 2017/09/06 09:49:35 dlg Exp $ */ /* * Copyright (c) 2016-2017 Martin Pieuchot @@ -469,7 +469,7 @@ db_ctf_pprint_ptr(const struct ctf_type *ctt, vaddr_t addr) if (name != NULL) db_printf("(%s%s *)", modif, name); - ptr = (unsigned long)db_get_value(addr, sizeof(unsigned long), 0); + ptr = (unsigned long)db_get_value(addr, sizeof(ptr), 0); db_printf("0x%lx", ptr); } |