cpu/lpc2387: Use PRIu32 in DEBUG() in mci

This commit is contained in:
Marian Buschsieweke 2018-08-14 15:35:12 +02:00
parent 6358e75f01
commit f31375a152
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -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;
}