From: Ilya Leoshkevich Date: Mon, 8 Jan 2024 12:50:00 +0000 (+0100) Subject: tests/tcg: Don't #include in aarch64/system/vtimer.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=379652e967b32ac905056bf723b54298b2f79a51;p=qemu.git tests/tcg: Don't #include in aarch64/system/vtimer.c make check-tcg fails on Fedora with: vtimer.c:9:10: fatal error: inttypes.h: No such file or directory Fedora has a minimal aarch64 cross-compiler, which satisfies the configure checks, so it's chosen instead of the dockerized one. There is no cross-version of inttypes.h, however. Fix by using stdint.h instead. The test does not require anything from inttypes.h anyway. Signed-off-by: Ilya Leoshkevich Message-ID: <20240108125030.58569-1-iii@linux.ibm.com> Signed-off-by: Paolo Bonzini --- diff --git a/tests/tcg/aarch64/system/vtimer.c b/tests/tcg/aarch64/system/vtimer.c index 42f2f7796c..7d725eced3 100644 --- a/tests/tcg/aarch64/system/vtimer.c +++ b/tests/tcg/aarch64/system/vtimer.c @@ -6,7 +6,7 @@ * SPDX-License-Identifier: GPL-2.0-or-later */ -#include +#include #include /* grabbed from Linux */