Skip to content

Commit

Permalink
Fix build on arm after r325817
Browse files Browse the repository at this point in the history
Reported by:	rpokala
MFC after:	3 weeks
X-MFC-With:	325817
Sponsored by:	Spectra Logic Corp
  • Loading branch information
asomers committed Nov 14, 2017
1 parent 2e36db1 commit c4708ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/sys/aio/lio_kqueue_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@

#define PATH_TEMPLATE "aio.XXXXXXXXXX"

#define DEBUG
#define LIO_MAX 5
#define MAX_IOCBS_PER_LIO 64
#define MAX_IOCBS (LIO_MAX * MAX_IOCBS_PER_LIO)
Expand Down Expand Up @@ -119,8 +118,8 @@ main(int argc, char *argv[])
= iocb[k]->aio_nbytes * k * (run + 1);

#ifdef DEBUG
printf("hello iocb[k] %ld\n",
iocb[k]->aio_offset);
printf("hello iocb[k] %jd\n",
(intmax_t)iocb[k]->aio_offset);
#endif
iocb[k]->aio_lio_opcode = LIO_WRITE;
}
Expand All @@ -133,8 +132,9 @@ main(int argc, char *argv[])
error = errno;
time(&time2);
#ifdef DEBUG
printf("Time %ld %ld %ld result -> %d\n",
time1, time2, time2-time1, result);
printf("Time %jd %jd %jd result -> %d\n",
(intmax_t)time1, (intmax_t)time2,
(intmax_t)time2-time1, result);
#endif
if (result != 0) {
errno = error;
Expand Down

0 comments on commit c4708ce

Please sign in to comment.