diff options
author | John Baldwin <jhb@FreeBSD.org> | 2021-12-28 17:41:47 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2021-12-28 17:41:47 +0000 |
commit | db269074ff820c4ee1afcc20b4788da88ffe22ed (patch) | |
tree | 576b46bd2890c5ff8851efddcf290f68b34fe0cd /sys/ddb/db_access.c | |
parent | e7d4d580302d0b769d232405f312f73c30d168c8 (diff) |
Diffstat (limited to 'sys/ddb/db_access.c')
-rw-r--r-- | sys/ddb/db_access.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ddb/db_access.c b/sys/ddb/db_access.c index dcc3055f4463..030b13869fe1 100644 --- a/sys/ddb/db_access.c +++ b/sys/ddb/db_access.c @@ -55,7 +55,7 @@ static unsigned db_extend[] = { /* table for sign-extending */ db_expr_t db_get_value(db_addr_t addr, int size, bool is_signed) { - char data[sizeof(u_int64_t)]; + char data[sizeof(uint64_t)]; db_expr_t value; int i; |