From db269074ff820c4ee1afcc20b4788da88ffe22ed Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 28 Dec 2021 09:41:47 -0800 Subject: sys/ddb: Use C99 fixed-width integer types. No functional change. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D33634 --- sys/ddb/db_access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/ddb/db_access.c') 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; -- cgit v1.2.3