From 22f77b46ab555f57523990094a3e40a55f2c492a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Tue, 10 Mar 2026 09:31:17 +0100 Subject: New upstream version 3.7 --- biosdecode.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'biosdecode.c') diff --git a/biosdecode.c b/biosdecode.c index 99a27fe..c387276 100644 --- a/biosdecode.c +++ b/biosdecode.c @@ -2,7 +2,7 @@ * BIOS Decode * * Copyright (C) 2000-2002 Alan Cox - * Copyright (C) 2002-2017 Jean Delvare + * Copyright (C) 2002-2025 Jean Delvare * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -111,8 +111,8 @@ static int smbios3_decode(const u8 *p, size_t len) p[0x07], p[0x08], p[0x09]); printf("\tStructure Table Maximum Length: %u bytes\n", DWORD(p + 0x0C)); - printf("\tStructure Table 64-bit Address: 0x%08X%08X\n", - QWORD(p + 0x10).h, QWORD(p + 0x10).l); + printf("\tStructure Table 64-bit Address: 0x%016llX\n", + QWORD(p + 0x10)); return 1; } @@ -284,8 +284,8 @@ static int acpi_decode(const u8 *p, size_t len) if (DWORD(p + 20) < 32) return 1; - printf("\tXSD Table 64-bit Address: 0x%08X%08X\n", - QWORD(p + 24).h, QWORD(p + 24).l); + printf("\tXSD Table 64-bit Address: 0x%016llX\n", + QWORD(p + 24)); return 1; } -- cgit v1.2.3