Changeset 9a21fc7 in rtems


Ignore:
Timestamp:
09/05/18 05:38:13 (6 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
54d87f2
Parents:
ccdce9d8
git-author:
Sebastian Huber <sebastian.huber@…> (09/05/18 05:38:13)
git-committer:
Sebastian Huber <sebastian.huber@…> (09/05/18 05:38:47)
Message:

bsp/mpc55xxevb: Fix format warning

Close #3504.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bsps/powerpc/mpc55xxevb/dev/dspi.c

    rccdce9d8 r9a21fc7  
    3131
    3232#include <rtems/status-checks.h>
     33
     34#include <inttypes.h>
    3335
    3436#define MPC55XX_DSPI_FIFO_SIZE 4
     
    120122
    121123        if (error_status != 0) {
    122                 RTEMS_SYSLOG_ERROR( "eDMA error: 0x%08x\n", error_status);
     124                RTEMS_SYSLOG_ERROR( "eDMA error: 0x%08" PRIx32 "\n", error_status);
    123125        }
    124126}
Note: See TracChangeset for help on using the changeset viewer.