From 3bfdc4e2bceb601b90c81a9baa73c1904db58b2f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 28 Feb 2023 10:37:18 -0300 Subject: support: use 64-bit time_t (bug 30111) Ensure to use 64-bit time_t in the test infrastructure. --- support/support_can_chroot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'support/support_can_chroot.c') diff --git a/support/support_can_chroot.c b/support/support_can_chroot.c index 7d9f91205d..7b4f491b53 100644 --- a/support/support_can_chroot.c +++ b/support/support_can_chroot.c @@ -29,14 +29,14 @@ static void callback (void *closure) { int *result = closure; - struct stat64 before; + struct stat before; xstat ("/dev", &before); if (chroot ("/dev") != 0) { *result = errno; return; } - struct stat64 after; + struct stat after; xstat ("/", &after); TEST_VERIFY (before.st_dev == after.st_dev); TEST_VERIFY (before.st_ino == after.st_ino); -- cgit v1.2.3