aboutsummaryrefslogtreecommitdiff
path: root/support/support_can_chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/support_can_chroot.c')
-rw-r--r--support/support_can_chroot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/support_can_chroot.c b/support/support_can_chroot.c
index 7d9f912..7b4f491 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);