From f31375a1527dc7dc0982dcce7cd15bf7d9ef9c2f Mon Sep 17 00:00:00 2001
From: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
Date: Tue, 14 Aug 2018 15:35:12 +0200
Subject: [PATCH] cpu/lpc2387: Use PRIu32 in DEBUG() in mci

---
 cpu/lpc2387/mci/lpc2387-mci.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/cpu/lpc2387/mci/lpc2387-mci.c b/cpu/lpc2387/mci/lpc2387-mci.c
index e61121ece7..804377fa11 100644
--- a/cpu/lpc2387/mci/lpc2387-mci.c
+++ b/cpu/lpc2387/mci/lpc2387-mci.c
@@ -578,7 +578,8 @@ diskio_sta_t mci_initialize(void)
 
             /* This loop will take a time. Insert wai_tsk(1) here for multitask envilonment. */
             if (xtimer_now_usec() > (start + 1000000/* !Timer[0] */)) {
-                DEBUG("now: %lu, started at: %lu\n", xtimer_now_usec(), start);
+                DEBUG("now: %" PRIu32 ", started at: %" PRIu32 "\n",
+                      xtimer_now_usec(), start);
                 DEBUG("%s, %d: Timeout #2\n", RIOT_FILE_RELATIVE, __LINE__);
                 goto di_fail;
             }
-- 
GitLab