Author: asomers
Date: Tue Nov 14 21:11:55 2017
New Revision: 325827
URL: https://svnweb.freebsd.org/changeset/base/325827

Log:
  Fix build on arm after r325817
  
  Reported by:  rpokala
  MFC after:    3 weeks
  X-MFC-With:   325817
  Sponsored by: Spectra Logic Corp

Modified:
  head/tests/sys/aio/lio_kqueue_test.c

Modified: head/tests/sys/aio/lio_kqueue_test.c
==============================================================================
--- head/tests/sys/aio/lio_kqueue_test.c        Tue Nov 14 21:03:57 2017        
(r325826)
+++ head/tests/sys/aio/lio_kqueue_test.c        Tue Nov 14 21:11:55 2017        
(r325827)
@@ -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)
@@ -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;
                        }
@@ -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;
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to