From 241fdca7f336c60c1e38101c7b4371cf5c9aaf60 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 22 Feb 2025 09:39:54 +0100 Subject: AHCI.cc: Use UInt32 instead of auto. Signed-off-by: Amlal --- dev/Kernel/HALKit/AMD64/Storage/AHCI.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev') diff --git a/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc b/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc index 79b445ce..98fa228a 100644 --- a/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc +++ b/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc @@ -69,7 +69,7 @@ STATIC Void drv_compute_disk_ahci() noexcept { kHighestLBA = 0UL; - const auto kSzIdent = 512; + const UInt32 kSzIdent = 512U; UInt8 identify_data[kSzIdent] = {0}; -- cgit v1.2.3