bsp/mpc55xxevb: Fix format warning

Close #3504.
This commit is contained in:
Sebastian Huber
2018-09-05 07:38:47 +02:00
parent ccdce9d8f6
commit 9a21fc7383
+3 -1
View File
@@ -31,6 +31,8 @@
#include <rtems/status-checks.h>
#include <inttypes.h>
#define MPC55XX_DSPI_FIFO_SIZE 4
#define MPC55XX_DSPI_CTAR_NUMBER 8
@@ -119,7 +121,7 @@ static void mpc55xx_dspi_edma_done( edma_channel_context *ctx, uint32_t error_st
rtems_semaphore_release( e->id);
if (error_status != 0) {
RTEMS_SYSLOG_ERROR( "eDMA error: 0x%08x\n", error_status);
RTEMS_SYSLOG_ERROR( "eDMA error: 0x%08" PRIx32 "\n", error_status);
}
}