diff --git a/src/test/test-btrfs-physical-offset.c b/src/test/test-btrfs-physical-offset.c index bcc6252381c..379ab311003 100644 --- a/src/test/test-btrfs-physical-offset.c +++ b/src/test/test-btrfs-physical-offset.c @@ -1,5 +1,6 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ +#include #include #include "btrfs-util.h" @@ -18,7 +19,7 @@ int main(int argc, char *argv[]) { fd = open(argv[1], O_RDONLY|O_CLOEXEC|O_NOCTTY); if (fd < 0) { - log_error_errno(fd, "Failed to open '%s': %m", argv[1]); + log_error_errno(errno, "Failed to open '%s': %m", argv[1]); return EXIT_FAILURE; }