summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/regression/aio/aiop/aiop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/regression/aio/aiop/aiop.c b/tools/regression/aio/aiop/aiop.c
index 31a977e..b44c4ad 100644
--- a/tools/regression/aio/aiop/aiop.c
+++ b/tools/regression/aio/aiop/aiop.c
@@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
#include <sys/disk.h>
#include <aio.h>
#include <fcntl.h>
+#include <inttypes.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
@@ -186,7 +187,7 @@ main(int argc, char *argv[])
perror("unknown file type\n");
exit(1);
}
- printf("File: %s; File size %qd bytes\n", fn, file_size);
+ printf("File: %s; File size %"PRId64" bytes\n", fn, file_size);
aio = calloc(aio_len, sizeof(struct aiocb));
abuf = calloc(aio_len, sizeof(char *));
OpenPOWER on IntegriCloud