aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2021-12-28 17:41:47 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2021-12-28 17:41:47 +0000
commitdb269074ff820c4ee1afcc20b4788da88ffe22ed (patch)
tree576b46bd2890c5ff8851efddcf290f68b34fe0cd /sys/ddb
parente7d4d580302d0b769d232405f312f73c30d168c8 (diff)
downloadsrc-db269074ff820c4ee1afcc20b4788da88ffe22ed.tar.gz
src-db269074ff820c4ee1afcc20b4788da88ffe22ed.zip
sys/ddb: Use C99 fixed-width integer types.
No functional change. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D33634
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_access.c2
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;