tests/btrfs.c: fix build on x32

* tests/btrfs.c (btrfs_test_ino_path_ioctls): Fix printing of st_ino.
This commit is contained in:
Gleb Fotengauer-Malinovskiy
2016-05-24 18:09:46 +03:00
committed by Dmitry V. Levin
parent 6697d15f0a
commit e79f038dd9

View File

@ -1264,8 +1264,8 @@ btrfs_test_ino_path_ioctls(void)
data->bytes_left, data->bytes_missing, data->elem_cnt,
data->elem_missed);
if (verbose) {
printf("[{inum=%lu, offset=0, root=5}]",
si.st_ino);
printf("[{inum=%llu, offset=0, root=5}]",
(unsigned long long) si.st_ino);
} else
printf("...");
printf("}}) = 0\n");